Struct exonum_btc_anchoring::AnchoringRpcConfig [] [src]

pub struct AnchoringRpcConfig {
    pub host: String,
    pub username: Option<String>,
    pub password: Option<String>,
}

Bitcoind rpc configuration.

Fields

Rpc url.

Rpc username.

Rpc password.

Trait Implementations

impl Debug for AnchoringRpcConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AnchoringRpcConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for AnchoringRpcConfig
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<AnchoringRpcConfig> for RpcClient
[src]

[src]

Performs the conversion.

Auto Trait Implementations