Struct sn_node::Config[][src]

pub struct Config {
    pub wallet_id: Option<String>,
    pub max_capacity: Option<u64>,
    pub root_dir: Option<PathBuf>,
    pub verbose: u64,
    pub local: bool,
    pub first: bool,
    pub network_config: NetworkConfig,
    pub completions: Option<String>,
    pub log_dir: Option<PathBuf>,
    pub update: bool,
    pub update_only: bool,
    pub clear_data: bool,
}

Node configuration

Fields

wallet_id: Option<String>

The address to be credited when this node farms SafeCoin. A hex formatted BLS public key.

max_capacity: Option<u64>

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

root_dir: Option<PathBuf>

Root directory for ChunkStores and cached state. If not set, it defaults to "root_dir" within the sn_node project data directory, located at: Linux: $HOME/.safe/node/root_dir Windows: {FOLDERID_Profile}/.safe/node/root_dir MacOS: $HOME/.safe/node/root_dir

verbose: u64

Verbose output. -v is equivalent to logging with warn, -vv to info, -vvv to debug, -vvvv to trace. This flag overrides RUST_LOG.

local: bool

Is the node running for a local section?

first: bool

Is this the first node in a section?

network_config: NetworkConfigcompletions: Option<String>

dump shell completions for: [bash, fish, zsh, powershell, elvish]

log_dir: Option<PathBuf>

Send logs to a file within the specified directory

update: bool

Attempt to self-update?

update_only: bool

Attempt to self-update without starting the node process

clear_data: bool

Delete all data from a previous node running on the same PC

Implementations

impl Config[src]

pub fn new() -> Result<Self, Error>[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> 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> 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>,