pub trait Transform<H> {
    type Output;

    fn transform(&self, h: H) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors