From 54324e5af6d2e0bef7e91133f36431010675a7f2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 12 Jan 2021 13:05:52 +0000 Subject: [PATCH] Publish autogenerated nightly docs --- .../bdk/database/any/enum.AnyBatch.html | 28 +- .../bdk/database/any/enum.AnyDatabase.html | 64 +- .../database/any/enum.AnyDatabaseConfig.html | 12 +- .../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 +- .../descriptor/checksum/fn.get_checksum.html | 2 +- .../latest/bdk/descriptor/enum.Legacy.html | 30 +- .../latest/bdk/descriptor/enum.Segwitv0.html | 30 +- .../latest/bdk/descriptor/enum.Terminal.html | 26 +- .../bdk/descriptor/error/enum.Error.html | 24 +- .../latest/bdk/descriptor/error/index.html | 2 +- .../nightly/latest/bdk/descriptor/index.html | 4 +- .../descriptor/policy/enum.PolicyError.html | 2 +- .../latest/bdk/descriptor/policy/index.html | 2 +- .../bdk/descriptor/struct.Miniscript.html | 42 +- .../latest/bdk/descriptor/template/index.html | 2 +- .../bdk/descriptor/template/struct.BIP44.html | 6 +- .../template/struct.BIP44Public.html | 6 +- .../bdk/descriptor/template/struct.BIP49.html | 6 +- .../template/struct.BIP49Public.html | 6 +- .../bdk/descriptor/template/struct.BIP84.html | 6 +- .../template/struct.BIP84Public.html | 6 +- .../bdk/descriptor/template/struct.P2PKH.html | 6 +- .../descriptor/template/struct.P2WPKH.html | 6 +- .../template/struct.P2WPKH_P2SH.html | 6 +- .../template/trait.DescriptorTemplate.html | 11 +- .../template/type.DescriptorTemplateOut.html | 4 +- .../bdk/descriptor/trait.ExtractPolicy.html | 6 +- .../bdk/descriptor/trait.ScriptContext.html | 50 +- .../descriptor/trait.ToWalletDescriptor.html | 8 +- .../descriptor/type.ExtendedDescriptor.html | 2 +- .../latest/bdk/keys/enum.DescriptorKey.html | 14 +- .../bdk/keys/enum.DescriptorPublicKey.html | 2 +- .../bdk/keys/enum.DescriptorSecretKey.html | 2 +- .../latest/bdk/keys/enum.KeyError.html | 14 +- .../bdk/keys/enum.ScriptContextEnum.html | 14 +- .../latest/bdk/keys/fn.any_network.html | 2 +- .../latest/bdk/keys/fn.mainnet_network.html | 2 +- .../latest/bdk/keys/fn.merge_networks.html | 2 +- .../latest/bdk/keys/fn.test_networks.html | 2 +- .../bdk/nightly/latest/bdk/keys/index.html | 2 +- .../latest/bdk/keys/struct.GeneratedKey.html | 12 +- .../struct.PrivateKeyGenerateOptions.html | 8 +- .../bdk/keys/struct.SortedMultiVec.html | 24 +- .../latest/bdk/keys/trait.DerivableKey.html | 6 +- .../bdk/keys/trait.ExtScriptContext.html | 10 +- .../keys/trait.GeneratableDefaultOptions.html | 8 +- .../latest/bdk/keys/trait.GeneratableKey.html | 14 +- .../latest/bdk/keys/trait.ScriptContext.html | 50 +- .../bdk/keys/trait.ToDescriptorKey.html | 8 +- .../latest/bdk/keys/type.ValidNetworks.html | 2 +- .../nightly/latest/bdk/macro.descriptor.html | 14 +- .../nightly/latest/bdk/macro.fragment.html | 4 +- .../bdk/nightly/latest/search-index.js | 2 +- .../latest/src/bdk/database/any.rs.html | 8 +- .../src/bdk/descriptor/checksum.rs.html | 8 +- .../latest/src/bdk/descriptor/dsl.rs.html | 2124 +++++++++-------- .../latest/src/bdk/descriptor/error.rs.html | 18 +- .../latest/src/bdk/descriptor/mod.rs.html | 110 +- .../latest/src/bdk/descriptor/policy.rs.html | 6 +- .../src/bdk/descriptor/template.rs.html | 40 +- .../nightly/latest/src/bdk/keys/mod.rs.html | 32 +- 67 files changed, 1579 insertions(+), 1420 deletions(-) diff --git a/static/docs-rs/bdk/nightly/latest/bdk/database/any/enum.AnyBatch.html b/static/docs-rs/bdk/nightly/latest/bdk/database/any/enum.AnyBatch.html index 94ef747c60..d71328dd0d 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/database/any/enum.AnyBatch.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/database/any/enum.AnyBatch.html @@ -1,7 +1,7 @@ bdk::database::any::AnyBatch - Rust

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

pub enum AnyBatch {
+                Change settings

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

pub enum AnyBatch {
     Memory(<MemoryDatabase as BatchDatabase>::Batch),
     Sled(<Tree as BatchDatabase>::Batch),
 }

Type that contains any of the BatchDatabase::Batch types defined by the library

@@ -9,20 +9,20 @@ Variants

In-memory ephemeral database

Sled(<Tree as BatchDatabase>::Batch)
This is supported on crate feature key-value-db only.

Simple key-value embedded database based on [sled]

-

Trait Implementations

impl BatchOperations for AnyBatch[src]

Trait Implementations

impl BatchOperations for AnyBatch[src]

impl From<<MemoryDatabase as BatchDatabase>::Batch> for AnyBatch[src]

impl From<<Tree as BatchDatabase>::Batch> for AnyBatch[src]

impl From<<MemoryDatabase as BatchDatabase>::Batch> for AnyBatch[src]

impl From<<Tree as BatchDatabase>::Batch> for AnyBatch[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

Loading content...

Implementations on Foreign Types

impl BatchOperations for Tree[src]

impl BatchOperations for Batch[src]

Loading content...

Implementors

impl BatchOperations for AnyBatch[src]

impl BatchOperations for AnyDatabase[src]

impl BatchOperations for MemoryDatabase[src]

Loading content...
\ No newline at end of file diff --git a/static/docs-rs/bdk/nightly/latest/bdk/database/trait.ConfigurableDatabase.html b/static/docs-rs/bdk/nightly/latest/bdk/database/trait.ConfigurableDatabase.html index 463d548462..b308a6fc62 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/database/trait.ConfigurableDatabase.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/database/trait.ConfigurableDatabase.html @@ -7,4 +7,4 @@ }

Trait for Database types that can be created given a configuration

Associated Types

type Config: Debug[src]

Type that contains the configuration

Loading content...

Required methods

pub fn from_config(config: &Self::Config) -> Result<Self, Error>[src]

Create a new instance given a configuration

-
Loading content...

Implementations on Foreign Types

impl ConfigurableDatabase for Tree[src]

type Config = SledDbConfiguration

Loading content...

Implementors

impl ConfigurableDatabase for AnyDatabase[src]

type Config = AnyDatabaseConfig

impl ConfigurableDatabase for MemoryDatabase[src]

type Config = ()

Loading content...
\ No newline at end of file +Loading content...

Implementations on Foreign Types

impl ConfigurableDatabase for Tree[src]

type Config = SledDbConfiguration

Loading content...

Implementors

impl ConfigurableDatabase for AnyDatabase[src]

type Config = AnyDatabaseConfig

impl ConfigurableDatabase for MemoryDatabase[src]

type Config = ()

Loading content... \ No newline at end of file diff --git a/static/docs-rs/bdk/nightly/latest/bdk/database/trait.Database.html b/static/docs-rs/bdk/nightly/latest/bdk/database/trait.Database.html index c776d70675..de580e1217 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/database/trait.Database.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/database/trait.Database.html @@ -32,4 +32,4 @@ next time.

pub fn get_last_index(
    &self,
    keychain: KeychainKind
) -> Result<Option<u32>, Error>
[src]

Return the last defivation index for a keychain.

pub fn increment_last_index(
    &mut self,
    keychain: KeychainKind
) -> Result<u32, Error>
[src]

Increment the last derivation index for a keychain and return it

It should insert and return 0 if not present in the database

-
Loading content...

Implementations on Foreign Types

impl Database for Tree[src]

Loading content...

Implementors

impl Database for AnyDatabase[src]

impl Database for MemoryDatabase[src]

Loading content... \ No newline at end of file +Loading content...

Implementations on Foreign Types

impl Database for Tree[src]

Loading content...

Implementors

impl Database for AnyDatabase[src]

impl Database for MemoryDatabase[src]

Loading content... \ No newline at end of file diff --git a/static/docs-rs/bdk/nightly/latest/bdk/descriptor/checksum/fn.get_checksum.html b/static/docs-rs/bdk/nightly/latest/bdk/descriptor/checksum/fn.get_checksum.html index 6b9e25e90a..886ce95628 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/descriptor/checksum/fn.get_checksum.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/descriptor/checksum/fn.get_checksum.html @@ -1,5 +1,5 @@ bdk::descriptor::checksum::get_checksum - Rust

[][src]Function bdk::descriptor::checksum::get_checksum

pub fn get_checksum(desc: &str) -> Result<String, Error>

Compute the checksum of a descriptor

+ Change settings

[][src]Function bdk::descriptor::checksum::get_checksum

pub fn get_checksum(desc: &str) -> Result<String, DescriptorError>

Compute the checksum of a descriptor

\ No newline at end of file diff --git a/static/docs-rs/bdk/nightly/latest/bdk/descriptor/enum.Legacy.html b/static/docs-rs/bdk/nightly/latest/bdk/descriptor/enum.Legacy.html index c11c1374f5..22344382c7 100644 --- a/static/docs-rs/bdk/nightly/latest/bdk/descriptor/enum.Legacy.html +++ b/static/docs-rs/bdk/nightly/latest/bdk/descriptor/enum.Legacy.html @@ -22,7 +22,7 @@ operator. gt(&self, other: &Rhs) -> bool1.0.0[src]

impl ScriptContext for Legacy

impl ScriptContext for Legacy

impl StructuralEq for Legacy

impl StructuralPartialEq for Legacy

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

impl<Ctx> ExtScriptContext for Ctx where
    Ctx: 'static + ScriptContext
[src]

impl<Ctx> ExtScriptContext for Ctx where
    Ctx: 'static + ScriptContext
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl ScriptContext for Segwitv0

impl ScriptContext for Segwitv0

impl StructuralEq for Segwitv0

impl StructuralPartialEq for Segwitv0

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

impl<Ctx> ExtScriptContext for Ctx where
    Ctx: 'static + ScriptContext
[src]

impl<Ctx> ExtScriptContext for Ctx where
    Ctx: 'static + ScriptContext
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]