Enum bdk::blockchain::any::AnyBlockchainConfig[][src]

pub enum AnyBlockchainConfig {
    Electrum(ElectrumBlockchainConfig),
    Esplora(EsploraBlockchainConfig),
    CompactFilters(CompactFiltersBlockchainConfig),
    Rpc(RpcConfig),
}
Expand description

Type that can contain any of the blockchain configurations defined by the library

This allows storing a single configuration that can be loaded into an AnyBlockchain instance. Wallets that plan to offer users the ability to switch blockchain backend at runtime will find this particularly useful.

This type can be serialized from a JSON object like:

use bdk::blockchain::{electrum::ElectrumBlockchainConfig, AnyBlockchainConfig};
let config: AnyBlockchainConfig = serde_json::from_str(
    r#"{
   "type" : "electrum",
   "url" : "ssl://electrum.blockstream.info:50002",
   "retry": 2,
   "stop_gap": 20
}"#,
)
.unwrap();
assert_eq!(
    config,
    AnyBlockchainConfig::Electrum(ElectrumBlockchainConfig {
        url: "ssl://electrum.blockstream.info:50002".into(),
        retry: 2,
        socks5: None,
        timeout: None,
        stop_gap: 20,
    })
);

Variants

Electrum(ElectrumBlockchainConfig)

Tuple Fields

This is supported on crate feature electrum only.

Electrum client

Esplora(EsploraBlockchainConfig)

Tuple Fields

This is supported on crate feature esplora only.

Esplora client

CompactFilters(CompactFiltersBlockchainConfig)

This is supported on crate feature compact_filters only.

Compact filters client

Rpc(RpcConfig)

Tuple Fields

This is supported on crate feature rpc only.

RPC client configuration

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.