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

Required Methods§

source

fn deserialize<R: AvroRead, D: AvroDecode>( self, r: &mut R, d: D ) -> Result<D::Out, AvroError>

Object Safety§

This trait is not object safe.

Implementors§