Struct everscale_types::models::block::BlockProof
source · pub struct BlockProof {
pub proof_for: BlockId,
pub root: Cell,
pub signatures: Option<BlockSignatures>,
}Expand description
Typed block proof.
Fields§
§proof_for: BlockIdId of the related block.
root: CellMerkle proof cell.
signatures: Option<BlockSignatures>Optional references for the masterchain block.
Trait Implementations§
source§impl Clone for BlockProof
impl Clone for BlockProof
source§fn clone(&self) -> BlockProof
fn clone(&self) -> BlockProof
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BlockProof
impl Debug for BlockProof
source§impl<'a> Load<'a> for BlockProof
impl<'a> Load<'a> for BlockProof
source§impl Store for BlockProof
impl Store for BlockProof
source§fn store_into(
&self,
builder: &mut CellBuilder,
finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.