From 99f90fa91de3bba3e11239418eb460339bb807b3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 17 Dec 2020 17:47:49 +0000 Subject: [PATCH] Publish autogenerated nightly docs --- .../blockchain/any/enum.AnyBlockchain.html | 29 +++---- .../any/enum.AnyBlockchainConfig.html | 17 ++-- .../latest/bdk/blockchain/any/index.html | 10 ++- .../enum.CompactFiltersError.html | 18 ++--- .../bdk/blockchain/compact_filters/index.html | 14 ++-- .../struct.BitcoinPeerConfig.html | 8 +- .../struct.CompactFiltersBlockchain.html | 24 +++--- ...struct.CompactFiltersBlockchainConfig.html | 10 +-- .../electrum/struct.ElectrumBlockchain.html | 2 +- .../struct.ElectrumBlockchainConfig.html | 2 +- .../esplora/struct.EsploraBlockchain.html | 2 +- .../struct.EsploraBlockchainConfig.html | 2 +- .../bdk/blockchain/trait.Blockchain.html | 2 +- .../trait.ConfigurableBlockchain.html | 2 +- .../bdk/database/any/enum.AnyBatch.html | 30 +++---- .../bdk/database/any/enum.AnyDatabase.html | 66 ++++++++-------- .../database/any/enum.AnyDatabaseConfig.html | 13 ++-- .../latest/bdk/database/any/index.html | 8 +- .../any/struct.SledDbConfiguration.html | 10 +-- .../memory/struct.MemoryDatabase.html | 4 +- .../bdk/database/trait.BatchDatabase.html | 2 +- .../bdk/database/trait.BatchOperations.html | 2 +- .../database/trait.ConfigurableDatabase.html | 2 +- .../latest/bdk/database/trait.Database.html | 2 +- .../latest/bdk/descriptor/template/index.html | 2 +- .../bdk/descriptor/template/struct.BIP44.html | 4 +- .../template/struct.BIP44Public.html | 4 +- .../bdk/descriptor/template/struct.BIP49.html | 4 +- .../template/struct.BIP49Public.html | 4 +- .../bdk/descriptor/template/struct.BIP84.html | 4 +- .../template/struct.BIP84Public.html | 4 +- .../bdk/descriptor/template/struct.P2PKH.html | 19 +++-- .../descriptor/template/struct.P2WPKH.html | 19 +++-- .../template/struct.P2WPKH_P2SH.html | 19 +++-- .../template/trait.DescriptorTemplate.html | 8 +- .../bdk/nightly/latest/bdk/enum.Error.html | 24 +++++- .../nightly/latest/bdk/enum.KeychainKind.html | 5 +- .../docs-rs/bdk/nightly/latest/bdk/index.html | 4 +- .../latest/bdk/keys/enum.DescriptorKey.html | 4 +- .../bdk/keys/enum.DescriptorPublicKey.html | 2 +- .../bdk/keys/enum.DescriptorSecretKey.html | 2 +- .../latest/bdk/keys/enum.KeyError.html | 14 ++-- .../bdk/nightly/latest/bdk/keys/index.html | 2 +- .../latest/bdk/keys/struct.GeneratedKey.html | 12 +-- .../struct.PrivateKeyGenerateOptions.html | 8 +- .../latest/bdk/keys/trait.DerivableKey.html | 6 +- .../keys/trait.GeneratableDefaultOptions.html | 8 +- .../latest/bdk/keys/trait.GeneratableKey.html | 14 ++-- .../bdk/keys/trait.ToDescriptorKey.html | 34 ++++---- .../nightly/latest/bdk/macro.descriptor.html | 14 ++-- .../nightly/latest/bdk/macro.fragment.html | 2 +- .../bdk/nightly/latest/bdk/sidebar-items.js | 2 +- .../nightly/latest/bdk/struct.FeeRate.html | 32 ++++---- .../latest/bdk/struct.TransactionDetails.html | 25 +++--- .../bdk/nightly/latest/bdk/struct.UTXO.html | 19 +++-- .../latest/bdk/wallet/export/index.html | 9 ++- .../wallet/export/struct.WalletExport.html | 20 ++--- .../bdk/nightly/latest/search-index.js | 2 +- .../latest/src/bdk/blockchain/any.rs.html | 26 +++++-- .../blockchain/compact_filters/mod.rs.html | 14 ++-- .../latest/src/bdk/blockchain/utils.rs.html | 2 +- .../latest/src/bdk/database/any.rs.html | 18 +++-- .../latest/src/bdk/descriptor/dsl.rs.html | 16 +++- .../src/bdk/descriptor/template.rs.html | 78 ++++++++++++++++--- .../bdk/nightly/latest/src/bdk/error.rs.html | 32 ++++---- .../nightly/latest/src/bdk/keys/mod.rs.html | 36 ++++++--- .../bdk/nightly/latest/src/bdk/lib.rs.html | 2 - .../bdk/nightly/latest/src/bdk/types.rs.html | 24 +++++- .../latest/src/bdk/wallet/export.rs.html | 12 ++- 69 files changed, 556 insertions(+), 340 deletions(-) diff --git a/static/docs-rs/bdk/nightly/latest/bdk/blockchain/any/enum.AnyBlockchain.html b/static/docs-rs/bdk/nightly/latest/bdk/blockchain/any/enum.AnyBlockchain.html index f870db1ad3..916f07b121 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/blockchain/any/enum.AnyBlockchain.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/blockchain/any/enum.AnyBlockchain.html @@ -1,7 +1,7 @@ bdk::blockchain::any::AnyBlockchain - Rust

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

pub enum AnyBlockchain {
+                Change settings

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

pub enum AnyBlockchain {
     Electrum(ElectrumBlockchain),
     Esplora(EsploraBlockchain),
     CompactFilters(CompactFiltersBlockchain),
@@ -10,18 +10,21 @@
 

See this module's documentation for a usage example.

Variants

-
This is supported on crate feature electrum only.
This is supported on crate feature esplora only.
CompactFilters(CompactFiltersBlockchain)
This is supported on crate feature compact_filters only.

Trait Implementations

impl Blockchain for AnyBlockchain[src]

impl ConfigurableBlockchain for AnyBlockchain[src]

type Config = AnyBlockchainConfig

Type that contains the configuration

-

impl From<CompactFiltersBlockchain> for AnyBlockchain[src]

impl From<ElectrumBlockchain> for AnyBlockchain[src]

impl From<EsploraBlockchain> for AnyBlockchain[src]