pub trait Deserializable: Sized {
    fn from_bytes(bytes: &[u8]) -> Result<Self>;
}
Expand description

Describe the ability to deserialize the type from sets of bytes.

Required Methods

Deserialization from variable length slices of bytes.

Implementors