Trait Unpack

Source
pub trait Unpack {
    // Required method
    fn unpack(data: Vec<u8>) -> Result<Self, ArrayObjectError>
       where Self: Sized;
}
Expand description

Restore from binary.

Required Methods§

Source

fn unpack(data: Vec<u8>) -> Result<Self, ArrayObjectError>
where Self: Sized,

Restore ArrayObject from a binary data.

Implementors§