pub trait Decode: Sized {
    fn decode<I: Input>(value: &mut I) -> Result<Self, Error>;
}
Expand description

Trait that allows zero-copy read of value-references from slices in LE format.

Required methods

Attempt to deserialise the value from input.

Implementations on Foreign Types

Implementors