pub trait Item {
    fn from_slice(slice: &[u8]) -> Self;
fn zero() -> Self; }
This is supported on crate feature utils only.
Expand description

Represents items that can be read by an Accessor.

Required methods

Create an object of this type from a byte slice.

Create an object of this type that represents a zero value.

Implementations on Foreign Types

Implementors