pub trait Load<'a, C: CellFamily>: Sized {
    fn load_from(slice: &mut CellSlice<'a, C>) -> Option<Self>;
}
Expand description

A data structure that can be deserialized from cells.

Required Methods§

Tries to load itself from a cell slice.

Implementations on Foreign Types§

Implementors§