pub trait AvroArrayAccess {
    fn decode_next<D: AvroDecode>(
        &mut self,
        d: D
    ) -> Result<Option<D::Out>, AvroError>; }

Required Methods

Implementors