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

Required Methods§

source

fn decode_next<D: AvroDecode>( &mut self, d: D ) -> Result<Option<D::Out>, AvroError>

Object Safety§

This trait is not object safe.

Implementors§