pub trait Decode: Sized { fn decode<I: Input>(value: &mut I) -> Result<Self, Error>; }
Trait that allows zero-copy read of value-references from slices in LE format.
Attempt to deserialise the value from input.