pub struct BlockExecTraces(pub Vec<TransactionExecTraces>);
Expand description
Represents all traces produced by transactions in a single block.
Tuple Fields§
§0: Vec<TransactionExecTraces>
Implementations§
source§impl BlockExecTraces
impl BlockExecTraces
pub fn filter_space(self, space: Space) -> Self
Trait Implementations§
source§impl Clone for BlockExecTraces
impl Clone for BlockExecTraces
source§fn clone(&self) -> BlockExecTraces
fn clone(&self) -> BlockExecTraces
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 DatabaseDecodable for BlockExecTraces
impl DatabaseDecodable for BlockExecTraces
source§impl Debug for BlockExecTraces
impl Debug for BlockExecTraces
source§impl Decodable for BlockExecTraces
impl Decodable for BlockExecTraces
source§impl Default for BlockExecTraces
impl Default for BlockExecTraces
source§fn default() -> BlockExecTraces
fn default() -> BlockExecTraces
Returns the “default value” for a type. Read more
source§impl Encodable for BlockExecTraces
impl Encodable for BlockExecTraces
source§impl From<Vec<TransactionExecTraces>> for BlockExecTraces
impl From<Vec<TransactionExecTraces>> for BlockExecTraces
source§fn from(v: Vec<TransactionExecTraces>) -> Self
fn from(v: Vec<TransactionExecTraces>) -> Self
Converts to this type from the input type.
source§impl Into<Vec<TransactionExecTraces>> for BlockExecTraces
impl Into<Vec<TransactionExecTraces>> for BlockExecTraces
source§fn into(self) -> Vec<TransactionExecTraces>
fn into(self) -> Vec<TransactionExecTraces>
Converts this type into the (usually inferred) input type.
source§impl MallocSizeOf for BlockExecTraces
impl MallocSizeOf for BlockExecTraces
source§impl PartialEq for BlockExecTraces
impl PartialEq for BlockExecTraces
source§fn eq(&self, other: &BlockExecTraces) -> bool
fn eq(&self, other: &BlockExecTraces) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BlockExecTraces
Auto Trait Implementations§
impl RefUnwindSafe for BlockExecTraces
impl Send for BlockExecTraces
impl Sync for BlockExecTraces
impl Unpin for BlockExecTraces
impl UnwindSafe for BlockExecTraces
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