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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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,
__context: &dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __context: &dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
Auto Trait Implementations§
impl Freeze for BlockSignatures
impl !RefUnwindSafe for BlockSignatures
impl Send for BlockSignatures
impl Sync for BlockSignatures
impl Unpin for BlockSignatures
impl !UnwindSafe for BlockSignatures
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more