pub struct ContextToVerifyBlock {
pub median_weight_for_block_reward: usize,
pub effective_median_weight: usize,
pub top_hash: [u8; 32],
pub median_block_timestamp: Option<u64>,
pub chain_height: usize,
pub current_hf: HardFork,
pub next_difficulty: u128,
pub already_generated_coins: u64,
}Expand description
This struct contains the data needed to verify a block, implementers MUST make sure the data in this struct is calculated correctly.
Fields§
§median_weight_for_block_reward: usize§effective_median_weight: usize§top_hash: [u8; 32]The top hash of the blockchain, aka the block hash of the previous block to the one we are verifying.
median_block_timestamp: Option<u64>Contains the median timestamp over the last 60 blocks, if there is less than 60 blocks this should be None
chain_height: usizeThe current chain height.
current_hf: HardForkThe current hard-fork.
next_difficulty: u128§already_generated_coins: u64The amount of coins already minted.
Trait Implementations§
Source§impl Clone for ContextToVerifyBlock
impl Clone for ContextToVerifyBlock
Source§fn clone(&self) -> ContextToVerifyBlock
fn clone(&self) -> ContextToVerifyBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContextToVerifyBlock
impl Debug for ContextToVerifyBlock
impl Eq for ContextToVerifyBlock
Source§impl PartialEq for ContextToVerifyBlock
impl PartialEq for ContextToVerifyBlock
impl StructuralPartialEq for ContextToVerifyBlock
Auto Trait Implementations§
impl Freeze for ContextToVerifyBlock
impl RefUnwindSafe for ContextToVerifyBlock
impl Send for ContextToVerifyBlock
impl Sync for ContextToVerifyBlock
impl Unpin for ContextToVerifyBlock
impl UnsafeUnpin for ContextToVerifyBlock
impl UnwindSafe for ContextToVerifyBlock
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘwhere
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘwhere
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 112 bytes