Struct ethcore::snapshot_manifest::ManifestData
[−]
[src]
pub struct ManifestData { pub state_hashes: Vec<H256>, pub block_hashes: Vec<H256>, pub state_root: H256, pub block_number: u64, pub block_hash: H256, }
Manifest data.
Fields
state_hashes: Vec<H256>
List of state chunk hashes.
block_hashes: Vec<H256>
List of block chunk hashes.
state_root: H256
The final, expected state root.
block_number: u64
Block number this snapshot was taken at.
block_hash: H256
Block hash this snapshot was taken at.
Methods
impl ManifestData
[src]
fn into_rlp(self) -> Bytes
Encode the manifest data to rlp.
fn from_rlp(raw: &[u8]) -> Result<Self, DecoderError>
Try to restore manifest data from raw bytes, interpreted as RLP.
Trait Implementations
impl Debug for ManifestData
[src]
impl Clone for ManifestData
[src]
fn clone(&self) -> ManifestData
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 PartialEq for ManifestData
[src]
fn eq(&self, __arg_0: &ManifestData) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ManifestData) -> bool
This method tests for !=
.