Struct safe_vault::Config [] [src]

pub struct Config {
    pub wallet_address: Option<XorName>,
    pub max_capacity: Option<u64>,
    pub chunk_store_root: Option<String>,
    pub invite_key: Option<[u8; 32]>,
    pub dev: Option<DevConfig>,
}

Lets a vault configure a wallet address and storage limit.

Fields

Used to store the address where SafeCoin will be sent.

Upper limit for allowed network storage on this vault.

Root directory for chunk_store directories.

Key that is allowed to put mutable data for account creation invitations.

Developer options.

Trait Implementations

impl Clone for Config
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Config
[src]

[src]

Formats the value using the given formatter.

impl Default for Config
[src]

[src]

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