[][src]Struct casper_node::reactor::validator::Config

pub struct Config {
    pub node: NodeConfig,
    pub logging: LoggingConfig,
    pub consensus: ConsensusConfig,
    pub network: SmallNetworkConfig,
    pub event_stream_server: EventStreamServerConfig,
    pub rest_server: RestServerConfig,
    pub rpc_server: RpcServerConfig,
    pub storage: StorageConfig,
    pub gossip: GossipConfig,
    pub fetcher: FetcherConfig,
    pub contract_runtime: ContractRuntimeConfig,
    pub deploy_acceptor: DeployAcceptorConfig,
}

Root configuration.

Fields

node: NodeConfig

Node configuration.

logging: LoggingConfig

Logging configuration.

consensus: ConsensusConfig

Consensus configuration.

network: SmallNetworkConfig

Network configuration.

event_stream_server: EventStreamServerConfig

Event stream API server configuration.

rest_server: RestServerConfig

REST API server configuration.

rpc_server: RpcServerConfig

RPC API server configuration.

storage: StorageConfig

On-disk storage configuration.

gossip: GossipConfig

Gossip protocol configuration.

fetcher: FetcherConfig

Fetcher configuration.

contract_runtime: ContractRuntimeConfig

Contract runtime configuration.

deploy_acceptor: DeployAcceptorConfig

Deploy acceptor configuration.

Trait Implementations

impl DataSize for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

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

impl Serialize for Config[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Serialize for T where
    T: Serialize + ?Sized
[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>, 

impl<T> WithSubscriber for T[src]