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

pub enum AnyBlockchainConfig {
    Electrum(ElectrumBlockchainConfig),
    Esplora(EsploraBlockchainConfig),
    CompactFilters(CompactFiltersBlockchainConfig),
    Rpc(RpcConfig),
}
This is supported on crate features electrum or esplora or compact_filters or rpc only.
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

This is supported on crate feature electrum only.

Electrum client

Tuple Fields of Electrum

0: ElectrumBlockchainConfig
This is supported on crate feature esplora only.

Esplora client

Tuple Fields of Esplora

0: EsploraBlockchainConfig
This is supported on crate feature compact_filters only.

Compact filters client

Tuple Fields of CompactFilters

0: CompactFiltersBlockchainConfig
This is supported on crate feature rpc only.

RPC client configuration

Tuple Fields of Rpc

0: RpcConfig

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

Should always be Self

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)

recently added

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.