Type Definition everscale_types::RcCell

source ·
pub type RcCell = Rc<dyn Cell<RcCellFamily>>;
Expand description

Single-threaded cell.

Trait Implementations§

source§

impl<'a> Load<'a, RcCellFamily> for RcCell

source§

fn load_from(slice: &mut CellSlice<'a, RcCellFamily>) -> Option<Self>

Tries to load itself from a cell slice.
source§

impl Store<RcCellFamily> for RcCell

source§

fn store_into( &self, builder: &mut RcCellBuilder, _: &mut dyn Finalizer<RcCellFamily> ) -> bool

Tries to store itself into the cell builder.