pub trait Deserializable: Sized { fn from_bytes(bytes: &[u8]) -> Result<Self>; }
Describe the ability to deserialize the type from sets of bytes.
Deserialization from variable length slices of bytes.