Trait everscale_types::cell::Store
source · pub trait Store<C: CellFamily> {
// Required method
fn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool;
}Expand description
A data structure that can be serialized into cells.
Required Methods§
sourcefn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.