Struct vapjson::spec::spec::Spec[][src]

pub struct Spec {
    pub name: String,
    pub data_dir: Option<String>,
    pub engine: Engine,
    pub params: Params,
    pub genesis: Genesis,
    pub accounts: State,
    pub nodes: Option<Vec<String>>,
    pub hardcoded_sync: Option<HardcodedSync>,
}

Spec deserialization.

Fields

name: String

Spec name.

data_dir: Option<String>

Special fork name.

engine: Engine

Engine.

params: Params

Spec params.

genesis: Genesis

Genesis header.

accounts: State

Genesis state.

nodes: Option<Vec<String>>

Boot nodes.

hardcoded_sync: Option<HardcodedSync>

Hardcoded synchronization for the light client.

Implementations

impl Spec[src]

pub fn load<R>(reader: R) -> Result<Self, Error> where
    R: Read
[src]

Loads test from json.

Trait Implementations

impl Debug for Spec[src]

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

impl PartialEq<Spec> for Spec[src]

impl StructuralPartialEq for Spec[src]

Auto Trait Implementations

impl RefUnwindSafe for Spec

impl Send for Spec

impl Sync for Spec

impl Unpin for Spec

impl UnwindSafe for Spec

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>,