Struct everscale_types::models::block::BlockSignatures
source · pub struct BlockSignatures {
pub validator_info: ValidatorBaseInfo,
pub signature_count: u32,
pub total_weight: u64,
pub signatures: Dict<u16, BlockSignature>,
}Expand description
Masterchain block signatures.
Fields§
§validator_info: ValidatorBaseInfoBrief validator basic info.
signature_count: u32Total number of signatures.
total_weight: u64Total validators weight.
signatures: Dict<u16, BlockSignature>Block signatures from all signers.
Trait Implementations§
source§impl Clone for BlockSignatures
impl Clone for BlockSignatures
source§fn clone(&self) -> BlockSignatures
fn clone(&self) -> BlockSignatures
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 BlockSignatures
impl Debug for BlockSignatures
source§impl<'tlb> Load<'tlb> for BlockSignatures
impl<'tlb> Load<'tlb> for BlockSignatures
source§impl Store for BlockSignatures
impl Store for BlockSignatures
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.