pub struct NodeConfig {
pub node_name: String,
pub data_dir: PathBuf,
pub network: NetworkConfig,
pub p2p: P2pConfig,
pub rpc: RpcConfig,
pub storage: StorageConfig,
pub logging: LoggingConfig,
}Expand description
Node configuration
Fields§
§node_name: StringNode name/identifier
data_dir: PathBufData directory
network: NetworkConfigNetwork configuration
p2p: P2pConfigP2P configuration
rpc: RpcConfigRPC configuration
storage: StorageConfigStorage configuration
logging: LoggingConfigLogging configuration
Trait Implementations§
Source§impl Clone for NodeConfig
impl Clone for NodeConfig
Source§fn clone(&self) -> NodeConfig
fn clone(&self) -> NodeConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeConfig
impl Debug for NodeConfig
Source§impl Default for NodeConfig
impl Default for NodeConfig
Source§impl<'de> Deserialize<'de> for NodeConfig
impl<'de> Deserialize<'de> for NodeConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NodeConfig
Source§impl PartialEq for NodeConfig
impl PartialEq for NodeConfig
Source§fn eq(&self, other: &NodeConfig) -> bool
fn eq(&self, other: &NodeConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeConfig
impl Serialize for NodeConfig
impl StructuralPartialEq for NodeConfig
Auto Trait Implementations§
impl Freeze for NodeConfig
impl RefUnwindSafe for NodeConfig
impl Send for NodeConfig
impl Sync for NodeConfig
impl Unpin for NodeConfig
impl UnsafeUnpin for NodeConfig
impl UnwindSafe for NodeConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more