Struct tiny_transaction_status::ConfirmedBlock
source · pub struct ConfirmedBlock {
pub previous_blockhash: String,
pub blockhash: String,
pub parent_slot: Slot,
pub transactions: Vec<TransactionWithStatusMeta>,
pub rewards: Rewards,
pub block_time: Option<UnixTimestamp>,
pub block_height: Option<u64>,
}Fields§
§previous_blockhash: String§blockhash: String§parent_slot: Slot§transactions: Vec<TransactionWithStatusMeta>§rewards: Rewards§block_time: Option<UnixTimestamp>§block_height: Option<u64>Implementations§
source§impl ConfirmedBlock
impl ConfirmedBlock
pub fn encode_with_options( self, encoding: UiTransactionEncoding, options: BlockEncodingOptions ) -> Result<UiConfirmedBlock, EncodeError>
Trait Implementations§
source§impl Clone for ConfirmedBlock
impl Clone for ConfirmedBlock
source§fn clone(&self) -> ConfirmedBlock
fn clone(&self) -> ConfirmedBlock
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 ConfirmedBlock
impl Debug for ConfirmedBlock
source§impl From<VersionedConfirmedBlock> for ConfirmedBlock
impl From<VersionedConfirmedBlock> for ConfirmedBlock
source§fn from(block: VersionedConfirmedBlock) -> Self
fn from(block: VersionedConfirmedBlock) -> Self
Converts to this type from the input type.
source§impl PartialEq<ConfirmedBlock> for ConfirmedBlock
impl PartialEq<ConfirmedBlock> for ConfirmedBlock
source§fn eq(&self, other: &ConfirmedBlock) -> bool
fn eq(&self, other: &ConfirmedBlock) -> bool
This method tests for
self and other values to be equal, and is used
by ==.