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