pub trait FromBytes {
    fn from_bytes(bytes: Bytes) -> Self;
}
Expand description

obtains a value from bytes with the suitable byte size”

Required Methods