pub struct BlockTransactions {
pub block_hash: BlockHash,
pub transactions: Vec<Transaction>,
}Expand description
Response with the missing transactions.
Fields§
§block_hash: BlockHashHash of the block.
transactions: Vec<Transaction>The requested transactions in order.
Trait Implementations§
Source§impl Clone for BlockTransactions
impl Clone for BlockTransactions
Source§fn clone(&self) -> BlockTransactions
fn clone(&self) -> BlockTransactions
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 BlockTransactions
impl RefUnwindSafe for BlockTransactions
impl Send for BlockTransactions
impl Sync for BlockTransactions
impl Unpin for BlockTransactions
impl UnsafeUnpin for BlockTransactions
impl UnwindSafe for BlockTransactions
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