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

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

Required Methods

fn to(&self, A) -> B

fn from(&self, B) -> A

Implementors