Trait functor::isomorphism::Iso [] [src]

pub trait Iso<A, B> {
    fn to(&self, _: A) -> B;
    fn from(&self, _: B) -> A;
}

Required Methods

Implementors