pub trait AvroDeserializer {
    fn deserialize<R: AvroRead, D: AvroDecode>(
        self,
        r: &mut R,
        d: D
    ) -> Result<D::Out, AvroError>; }

Required Methods

Implementors