Trait mz_avro::decode::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§
type Decoder: AvroDecode<Out = Self>
type State
Required Methods§
fn new_decoder(state: Self::State) -> Self::Decoder
Object Safety§
This trait is not object safe.