Trait Decode

Source
pub trait Decode<Rhs> {
    type Output;

    // Required method
    fn decode(&self, values: Rhs) -> Self::Output;
}
Expand description

Decode defines a standard interface for decoding data.

Required Associated Types§

Required Methods§

Source

fn decode(&self, values: Rhs) -> Self::Output

Implementors§