Trait mz_avro::StatefulAvroDecodable

source ·
pub trait StatefulAvroDecodable: Sized {
    type Decoder: AvroDecode<Out = Self>;
    type State;

    // Required method
    fn new_decoder(state: Self::State) -> Self::Decoder;
}

Required Associated Types§

source

type Decoder: AvroDecode<Out = Self>

source

type State

Required Methods§

source

fn new_decoder(state: Self::State) -> Self::Decoder

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl StatefulAvroDecodable for i32

source§

impl StatefulAvroDecodable for i64

source§

impl StatefulAvroDecodable for isize

source§

impl StatefulAvroDecodable for u64

source§

impl StatefulAvroDecodable for usize

source§

impl<T: AvroDecodable> StatefulAvroDecodable for Vec<T>

Implementors§