Decoder

Trait Decoder 

Source
pub trait Decoder<T> {
    // Required method
    fn decoder(self) -> Option<Codec<T>>;
}

Required Methods§

Source

fn decoder(self) -> Option<Codec<T>>

Implementations on Foreign Types§

Source§

impl Decoder<UnknownType> for &str

Source§

impl<T> Decoder<T> for Option<Codec<T>>

Source§

fn decoder(self) -> Option<Codec<T>>

Implementors§