Expand description
Mapped combinator
Structs§
- Mapped
- Combinator that maps the result of an
innercombinator with an isomorphism that implementsIso. - TryMap
- Combinator that maps the result of an
innercombinator with a faillible conversion that implementsTryFromInto.
Traits§
- Iso
- All isomorphisms to be used in
Mappedcombinator must implement this trait.Self::applyandSelf::rev_applymust be inverses of each other. See [SpecIso::spec_iso] and [SpecIso::spec_iso_rev] for more details. - SpecIso
- Spec version of
Iso. It mandates that the isomorphism is bijective. - Spec
IsoFn - Similar fix to https://github.com/secure-foundations/vest/issues/16
- Spec
TryFrom Into - Spec version of
TryFromInto. - Spec
TryFrom Into Fn - Similar fix to https://github.com/secure-foundations/vest/issues/16
- TryFrom
Into - Faillible version of
Iso.