pub trait FromBytes {
    // Required method
    fn from_bytes(data: Vec<u8>) -> Result<Self, DeserializeError>
       where Self: Sized;
}

Required Methods§

source

fn from_bytes(data: Vec<u8>) -> Result<Self, DeserializeError>
where Self: Sized,

Implementors§