Trait everscale_types::Store
source · pub trait Store<C: CellFamily> {
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.