Enum bdk::database::any::AnyDatabase[][src]

pub enum AnyDatabase {
    Memory(MemoryDatabase),
    Sled(Tree),
}
Expand description

Type that can contain any of the Database types defined by the library

It allows switching database type at runtime.

See this module’s documentation for a usage example.

Variants

In-memory ephemeral database

Sled(Tree)
This is supported on crate feature key-value-db only.

Simple key-value embedded database based on sled

Trait Implementations

Container for the operations

Create a new batch container

Consume and apply a batch of operations

Store a script_pubkey along with its keychain and child number.

Store a LocalUtxo

Store a raw transaction

Store the metadata of a transaction

Store the last derivation index for a given keychain.

Delete a script_pubkey given the keychain and its child number.

Delete the data related to a specific script_pubkey, meaning the keychain and the child number. Read more

Delete a LocalUtxo given its OutPoint

Delete a raw transaction given its Txid

Delete the metadata of a transaction and optionally the raw transaction itself

Delete the last derivation index for a keychain.

Type that contains the configuration

Create a new instance given a configuration

Read and checks the descriptor checksum for a given keychain. Read more

Return the list of script_pubkeys

Return the list of LocalUtxos

Return the list of raw transactions

Return the list of transactions metadata

Fetch a script_pubkey given the child number of a keychain.

Fetch the keychain and child number of a given script_pubkey

Fetch a LocalUtxo given its OutPoint

Fetch a raw transaction given its Txid

Fetch the transaction metadata and optionally also the raw transaction

Return the last defivation index for a keychain.

Increment the last derivation index for a keychain and return it Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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 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.