Struct vapjson::spec::hardcoded_sync::HardcodedSync[][src]

pub struct HardcodedSync {
    pub header: Bytes,
    pub total_difficulty: Uint,
    pub chts: Vec<H256>,
}

Spec hardcoded sync.

Fields

header: Bytes

Hexadecimal of the RLP encoding of the header of the block to start synchronization from.

total_difficulty: Uint

Total difficulty including the block of header.

chts: Vec<H256>

Ordered trie roots of blocks before and including header.

Trait Implementations

impl Debug for HardcodedSync[src]

impl<'de> Deserialize<'de> for HardcodedSync[src]

impl PartialEq<HardcodedSync> for HardcodedSync[src]

impl StructuralPartialEq for HardcodedSync[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,