Trait SpecTryFromInto

Source
pub trait SpecTryFromInto {
    type Src: SpecTryFrom<Self::Dst>;
    type Dst: SpecTryFrom<Self::Src>;
}
Expand description

Spec version of TryFromInto.

Required Associated Types§

Source

type Src: SpecTryFrom<Self::Dst>

The source type

Source

type Dst: SpecTryFrom<Self::Src>

The destination type

Implementors§