pub trait Unmarshall {
    type Data;
    type Error: Error;

    fn unmarshall(&self, reader: impl Read) -> Result<Self::Data, Self::Error>;
}

Required Associated Types

Required Methods

Implementors