Struct everscale_types::models::block::BlockRef
source · pub struct BlockRef {
pub end_lt: u64,
pub seqno: u32,
pub root_hash: CellHash,
pub file_hash: CellHash,
}Expand description
Reference to the external block.
Fields§
§end_lt: u64The end of the logical time of the referenced block.
seqno: u32Sequence number of the referenced block.
root_hash: CellHashRepresentation hash of the root cell of the referenced block.
file_hash: CellHashHash of the BOC encoded root cell of the referenced block.
Trait Implementations§
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for BlockRef
impl<'tlb, C: CellFamily> Load<'tlb, C> for BlockRef
source§impl PartialEq<BlockRef> for BlockRef
impl PartialEq<BlockRef> for BlockRef
source§impl<C: CellFamily> Store<C> for BlockRef
impl<C: CellFamily> Store<C> for BlockRef
source§fn 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.