[][src]Struct sn_node::Config

pub struct Config { /* fields omitted */ }

Node configuration

Implementations

impl Config[src]

pub fn new() -> Self[src]

Returns a new Config instance. Tries to read from the default node config file location, and overrides values with any equivalent command line args.

pub fn wallet_id(&self) -> Option<&String>[src]

The address to be credited when this node farms SafeCoin.

pub fn is_first(&self) -> bool[src]

Is this the first node in a section?

pub fn is_local(&self) -> bool[src]

Is the node running for a local section?

pub fn max_capacity(&self) -> u64[src]

Upper limit in bytes for allowed network storage on this node.

pub fn root_dir(&self) -> Result<PathBuf>[src]

Root directory for ChunkStores and cached state. If not set, it defaults to DEFAULT_ROOT_DIR_NAME within the project's data directory (see Config::root_dir for the directories on each platform).

pub fn set_root_dir<P: Into<PathBuf>>(&mut self, path: P)[src]

Set the root directory for ChunkStores and cached state.

pub fn set_log_dir<P: Into<PathBuf>>(&mut self, path: P)[src]

Set the directory to write the logs.

pub fn verbose(&self) -> Level[src]

Get the log level.

pub fn network_config(&self) -> &NetworkConfig[src]

Network configuration options.

pub fn set_network_config(&mut self, config: NetworkConfig)[src]

Set network configuration options.

pub fn completions(&self) -> &Option<String>[src]

Get the completions option

pub fn log_dir(&self) -> &Option<PathBuf>[src]

Directory where to write log file/s if specified

pub fn update(&self) -> bool[src]

Attempt to self-update?

pub fn update_only(&self) -> bool[src]

Attempt to self-update without starting the node process

pub fn listen_on_loopback(&mut self)[src]

Set the Quic-P2P ip configuration to 127.0.0.1.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

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

impl Eq for Config[src]

impl PartialEq<Config> for Config[src]

impl Serialize for Config[src]

impl StructOpt for Config[src]

impl StructOptInternal for Config[src]

impl StructuralEq for Config[src]

impl StructuralPartialEq 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> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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