mz_avro::decode

Trait AvroArrayAccess

Source
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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§