Struct ethcore::trace::flat::FlatBlockTraces
[−]
[src]
pub struct FlatBlockTraces(_);
Represents all traces produced by transactions in a single block.
Methods
impl FlatBlockTraces
[src]
Trait Implementations
impl Debug for FlatBlockTraces
[src]
impl PartialEq for FlatBlockTraces
[src]
fn eq(&self, __arg_0: &FlatBlockTraces) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FlatBlockTraces) -> bool
This method tests for !=
.
impl Clone for FlatBlockTraces
[src]
fn clone(&self) -> FlatBlockTraces
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Default for FlatBlockTraces
[src]
fn default() -> FlatBlockTraces
Returns the "default value" for a type. Read more
impl HeapSizeOf for FlatBlockTraces
[src]
fn heap_size_of_children(&self) -> usize
Measure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of::
impl From<Vec<FlatTransactionTraces>> for FlatBlockTraces
[src]
fn from(v: Vec<FlatTransactionTraces>) -> Self
Performs the conversion.
impl Encodable for FlatBlockTraces
[src]
fn rlp_append(&self, s: &mut RlpStream)
Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>
Get rlp-encoded bytes for this instance
impl Decodable for FlatBlockTraces
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes
impl Into<Vec<FlatTransactionTraces>> for FlatBlockTraces
[src]
fn into(self) -> Vec<FlatTransactionTraces>
Performs the conversion.