pub trait TryMorph<A> {
    type Outcome;

    // Required method
    fn try_morph(a: A) -> Result<Self::Outcome, ()>;
}
Expand description

Extensible conversion trait. Generic over only source type, with destination type being associated.

Required Associated Types§

source

type Outcome

The type into which A is mutated.

Required Methods§

source

fn try_morph(a: A) -> Result<Self::Outcome, ()>

Make conversion.

Implementors§

source§

impl<L: TypedGet, M> TryMorph<<L as TypedGet>::Type> for MorphWithUpperLimit<L, M>where L::Type: Ord, M: TryMorph<L::Type, Outcome = L::Type>,

§

type Outcome = <L as TypedGet>::Type

source§

impl<N: TypedGet> TryMorph<<N as TypedGet>::Type> for CheckedReduceBy<N>where N::Type: CheckedSub,

§

type Outcome = <N as TypedGet>::Type

source§

impl<N: TypedGet> TryMorph<<N as TypedGet>::Type> for ReduceBy<N>where N::Type: CheckedSub + Zero,

§

type Outcome = <N as TypedGet>::Type

source§

impl<T> TryMorph<T> for Identity

A structure that performs identity conversion.

§

type Outcome = T

source§

impl<T, A: TryInto<T>> TryMorph<A> for TryMorphInto<T>

§

type Outcome = T

source§

impl<V: TypedGet, X> TryMorph<X> for Replace<V>

§

type Outcome = <V as TypedGet>::Type