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
name: String
Node name
chain: String
Name of the chain we are connected to
network_port: u16
Networking port
rpc_enabled: bool
Is JSON-RPC server enabled?
rpc_interface: String
Interface that JSON-RPC listens on
rpc_port: u16
Port for JSON-RPC server
Trait Implementations
impl Debug for NetworkSettings
[src]
impl PartialEq for NetworkSettings
[src]
fn eq(&self, __arg_0: &NetworkSettings) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &NetworkSettings) -> bool
This method tests for !=
.
impl Clone for NetworkSettings
[src]
fn clone(&self) -> NetworkSettings
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