Expand description
Mapped combinator
Structs§
- Mapped
- Combinator that maps the result of an
inner
combinator with an isomorphism that implementsIso
. - TryMap
- Combinator that maps the result of an
inner
combinator with a faillible conversion that implementsTryFromInto
.
Traits§
- Iso
- All isomorphisms to be used in
Mapped
combinator must implement this trait.Self::apply
andSelf::rev_apply
must 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
.