pub struct VersionedConfirmedBlock {
pub previous_blockhash: String,
pub blockhash: String,
pub parent_slot: Slot,
pub transactions: Vec<VersionedTransactionWithStatusMeta>,
pub rewards: Rewards,
pub block_time: Option<UnixTimestamp>,
pub block_height: Option<u64>,
}
Fields§
§previous_blockhash: String
§blockhash: String
§parent_slot: Slot
§transactions: Vec<VersionedTransactionWithStatusMeta>
§rewards: Rewards
§block_time: Option<UnixTimestamp>
§block_height: Option<u64>
Trait Implementations§
source§impl Clone for VersionedConfirmedBlock
impl Clone for VersionedConfirmedBlock
source§fn clone(&self) -> VersionedConfirmedBlock
fn clone(&self) -> VersionedConfirmedBlock
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 VersionedConfirmedBlock
impl Debug for VersionedConfirmedBlock
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 VersionedConfirmedBlock
impl PartialEq for VersionedConfirmedBlock
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 VersionedConfirmedBlock
Auto Trait Implementations§
impl Freeze for VersionedConfirmedBlock
impl RefUnwindSafe for VersionedConfirmedBlock
impl Send for VersionedConfirmedBlock
impl Sync for VersionedConfirmedBlock
impl Unpin for VersionedConfirmedBlock
impl UnwindSafe for VersionedConfirmedBlock
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