Trait struct_deser::FromBytes [] [src]

pub trait FromBytes: SerializedByteLen {
    fn from_bytes(bytes: &[u8]) -> Self;
}

Represents types that can be constructed from bytes.

Required Methods

Creates Self by deserializing from bytes.

Implementors