pub trait SpecIso {
type Src: SpecFrom<Self::Dst>;
type Dst: SpecFrom<Self::Src>;
}Expand description
Spec version of Iso.
It mandates that the isomorphism is bijective.
pub trait SpecIso {
type Src: SpecFrom<Self::Dst>;
type Dst: SpecFrom<Self::Src>;
}Spec version of Iso.
It mandates that the isomorphism is bijective.