Struct ethcore::machine::AuxiliaryData[][src]

pub struct AuxiliaryData<'a> {
    pub bytes: Option<&'a [u8]>,
    pub receipts: Option<&'a [Receipt]>,
}

Auxiliary data fetcher for an Ethereum machine. In Ethereum-like machines there are two kinds of auxiliary data: bodies and receipts.

Fields

The full block bytes, including the header.

The block receipts.

Trait Implementations

impl<'a> Default for AuxiliaryData<'a>
[src]

Returns the "default value" for a type. Read more

impl<'a> Clone for AuxiliaryData<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for AuxiliaryData<'a>

impl<'a> Sync for AuxiliaryData<'a>