Struct everscale_types::RcCellFamily
source · pub struct RcCellFamily;Expand description
Single-threaded cell family.
Trait Implementations§
source§impl CellFamily for RcCellFamily
impl CellFamily for RcCellFamily
type Container<T: ?Sized> = Rc<T>
source§fn empty_cell() -> CellContainer<Self>
fn empty_cell() -> CellContainer<Self>
Creates an empty cell. Read more
source§fn empty_cell_ref() -> &'static dyn Cell<Self>
fn empty_cell_ref() -> &'static dyn Cell<Self>
Returns a static reference to the empty cell
source§fn all_zeros_ref() -> &'static dyn Cell<Self>
fn all_zeros_ref() -> &'static dyn Cell<Self>
Returns a static reference to the cell with all zeros.
source§fn all_ones_ref() -> &'static dyn Cell<Self>
fn all_ones_ref() -> &'static dyn Cell<Self>
Returns a static reference to the cell with all ones.
source§fn virtualize(cell: CellContainer<Self>) -> CellContainer<Self>
fn virtualize(cell: CellContainer<Self>) -> CellContainer<Self>
Creates a virtualized cell from the specified cell.
source§impl DefaultFinalizer for RcCellFamily
impl DefaultFinalizer for RcCellFamily
type Finalizer = RcCellFinalizer
fn default_finalizer() -> Self::Finalizer
source§impl Finalizer<RcCellFamily> for RcCellFinalizer
impl Finalizer<RcCellFamily> for RcCellFinalizer
source§fn finalize_cell(&mut self, ctx: CellParts<'_, RcCellFamily>) -> Option<RcCell>
fn finalize_cell(&mut self, ctx: CellParts<'_, RcCellFamily>) -> Option<RcCell>
Builds a new cell from cell parts.