Trait everscale_types::Load
source · pub trait Load<'a, C: CellFamily>: Sized {
// Required method
fn load_from(slice: &mut CellSlice<'a, C>) -> Option<Self>;
}Expand description
A data structure that can be deserialized from cells.
pub trait Load<'a, C: CellFamily>: Sized {
// Required method
fn load_from(slice: &mut CellSlice<'a, C>) -> Option<Self>;
}A data structure that can be deserialized from cells.