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§

Tries to store itself into the cell builder.

Implementations on Foreign Types§

Implementors§