[][src]Struct grin_wallet::WalletConfig

pub struct WalletConfig {
    pub chain_type: Option<ChainTypes>,
    pub api_listen_interface: String,
    pub api_listen_port: u16,
    pub owner_api_listen_port: Option<u16>,
    pub api_secret_path: Option<String>,
    pub node_api_secret_path: Option<String>,
    pub check_node_api_http_addr: String,
    pub owner_api_include_foreign: Option<bool>,
    pub data_file_dir: String,
    pub no_commit_cache: Option<bool>,
    pub tls_certificate_file: Option<String>,
    pub tls_certificate_key: Option<String>,
    pub dark_background_color_scheme: Option<bool>,
    pub keybase_notify_ttl: Option<u16>,
}

Fields

chain_type: Option<ChainTypes>api_listen_interface: Stringapi_listen_port: u16owner_api_listen_port: Option<u16>api_secret_path: Option<String>

Location of the secret for basic auth on the Owner API

node_api_secret_path: Option<String>

Location of the node api secret for basic auth on the Grin API

check_node_api_http_addr: Stringowner_api_include_foreign: Option<bool>data_file_dir: Stringno_commit_cache: Option<bool>

If Some(true), don't cache commits alongside output data speed improvement, but your commits are in the database

tls_certificate_file: Option<String>

TLS certificate file

tls_certificate_key: Option<String>

TLS certificate private key file

dark_background_color_scheme: Option<bool>

Whether to use the black background color scheme for command line if enabled, wallet command output color will be suitable for black background terminal

keybase_notify_ttl: Option<u16>

Methods

impl WalletConfig[src]

pub fn api_listen_addr(&self) -> String[src]

pub fn default_owner_api_listen_port() -> u16[src]

pub fn owner_api_listen_port(&self) -> u16[src]

Use value from config file, defaulting to sensible value if missing.

pub fn owner_api_listen_addr(&self) -> String[src]

Trait Implementations

impl PartialEq<WalletConfig> for WalletConfig[src]

impl Default for WalletConfig[src]

impl Clone for WalletConfig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for WalletConfig[src]

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

impl Serialize for WalletConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> SafeBorrow for T where
    T: ?Sized

impl<'a, T> DefaultFeatures for T where
    T: 'a + Send + Sync + Clone

impl<'a, T> NonSyncFeatures for T where
    T: 'a + Clone

impl<T> Same for T

type Output = T

Should always be Self