pub trait AvroDecodable: Sized {
    type Decoder: AvroDecode<Out = Self>;

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

Required Associated Types§

source

type Decoder: AvroDecode<Out = Self>

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§