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 for ConfirmedBlock
impl PartialEq for ConfirmedBlock
source§impl TryFrom<ConfirmedBlock> for VersionedConfirmedBlock
impl TryFrom<ConfirmedBlock> for VersionedConfirmedBlock
source§type Error = ConvertBlockError
type Error = ConvertBlockError
The type returned in the event of a conversion error.
impl StructuralPartialEq for ConfirmedBlock
Auto Trait Implementations§
impl Freeze for ConfirmedBlock
impl RefUnwindSafe for ConfirmedBlock
impl Send for ConfirmedBlock
impl Sync for ConfirmedBlock
impl Unpin for ConfirmedBlock
impl UnwindSafe for ConfirmedBlock
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more