pub trait SpecTryFromInto {
type Src: SpecTryFrom<Self::Dst>;
type Dst: SpecTryFrom<Self::Src>;
}
Expand description
Spec version of TryFromInto
.
Required Associated Types§
Sourcetype Src: SpecTryFrom<Self::Dst>
type Src: SpecTryFrom<Self::Dst>
The source type
Sourcetype Dst: SpecTryFrom<Self::Src>
type Dst: SpecTryFrom<Self::Src>
The destination type