pub struct PreProcessedZeldBlock {
pub transactions: Vec<ZeldTransaction>,
pub max_zero_count: u8,
}Expand description
Pre-processed block with all ZELD-relevant transactions.
Fields§
§transactions: Vec<ZeldTransaction>Transactions in the block (excluding coinbase).
max_zero_count: u8Highest leading zero count among all transactions.
Trait Implementations§
Source§impl Clone for PreProcessedZeldBlock
impl Clone for PreProcessedZeldBlock
Source§fn clone(&self) -> PreProcessedZeldBlock
fn clone(&self) -> PreProcessedZeldBlock
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for PreProcessedZeldBlock
impl RefUnwindSafe for PreProcessedZeldBlock
impl Send for PreProcessedZeldBlock
impl Sync for PreProcessedZeldBlock
impl Unpin for PreProcessedZeldBlock
impl UnwindSafe for PreProcessedZeldBlock
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