Struct multiversx_sdk::data::hyperblock::HyperBlock
source · pub struct HyperBlock {
pub nonce: u64,
pub round: u64,
pub hash: String,
pub prev_block_hash: String,
pub epoch: u64,
pub num_txs: u64,
pub shard_blocks: Vec<ShardBlocks>,
pub timestamp: u64,
pub accumulated_fees: String,
pub developer_fees: String,
pub accumulated_fees_in_epoch: String,
pub developer_fees_in_epoch: String,
}Fields§
§nonce: u64§round: u64§hash: String§prev_block_hash: String§epoch: u64§num_txs: u64§shard_blocks: Vec<ShardBlocks>§timestamp: u64§accumulated_fees: String§developer_fees: String§accumulated_fees_in_epoch: String§developer_fees_in_epoch: StringTrait Implementations§
source§impl Clone for HyperBlock
impl Clone for HyperBlock
source§fn clone(&self) -> HyperBlock
fn clone(&self) -> HyperBlock
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 HyperBlock
impl Debug for HyperBlock
source§impl<'de> Deserialize<'de> for HyperBlock
impl<'de> Deserialize<'de> for HyperBlock
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for HyperBlock
impl Send for HyperBlock
impl Sync for HyperBlock
impl Unpin for HyperBlock
impl UnwindSafe for HyperBlock
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