Struct ethcore_rpc::v1::NetworkSettings [] [src]

pub struct NetworkSettings {
    pub name: String,
    pub chain: String,
    pub network_port: u16,
    pub rpc_enabled: bool,
    pub rpc_interface: String,
    pub rpc_port: u16,
}

Networking & RPC settings

Fields

Node name

Name of the chain we are connected to

Networking port

Is JSON-RPC server enabled?

Interface that JSON-RPC listens on

Port for JSON-RPC server

Trait Implementations

impl Debug for NetworkSettings
[src]

Formats the value using the given formatter.

impl PartialEq for NetworkSettings
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for NetworkSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for NetworkSettings
[src]

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