pub trait Load<T> {
    type Output;

    fn load(self, src: T) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors