Struct bdk_wallet::keys::GeneratedKey
source · pub struct GeneratedKey<K, Ctx: ScriptContext> { /* private fields */ }
Expand description
Output of a GeneratableKey
key generation
Implementations§
source§impl<K, Ctx: ScriptContext> GeneratedKey<K, Ctx>
impl<K, Ctx: ScriptContext> GeneratedKey<K, Ctx>
Trait Implementations§
source§impl<K: Clone, Ctx: ScriptContext> Clone for GeneratedKey<K, Ctx>
impl<K: Clone, Ctx: ScriptContext> Clone for GeneratedKey<K, Ctx>
source§fn clone(&self) -> GeneratedKey<K, Ctx>
fn clone(&self) -> GeneratedKey<K, Ctx>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<K, Ctx: ScriptContext> Deref for GeneratedKey<K, Ctx>
impl<K, Ctx: ScriptContext> Deref for GeneratedKey<K, Ctx>
source§impl<Ctx, K> DerivableKey<Ctx> for GeneratedKey<K, Ctx>where
Ctx: ScriptContext,
K: DerivableKey<Ctx>,
impl<Ctx, K> DerivableKey<Ctx> for GeneratedKey<K, Ctx>where
Ctx: ScriptContext,
K: DerivableKey<Ctx>,
source§fn into_extended_key(self) -> Result<ExtendedKey<Ctx>, KeyError>
fn into_extended_key(self) -> Result<ExtendedKey<Ctx>, KeyError>
Consume
self
and turn it into an ExtendedKey
source§fn into_descriptor_key(
self,
origin: Option<KeySource>,
derivation_path: DerivationPath
) -> Result<DescriptorKey<Ctx>, KeyError>
fn into_descriptor_key( self, origin: Option<KeySource>, derivation_path: DerivationPath ) -> Result<DescriptorKey<Ctx>, KeyError>
Consume
self
and turn it into a DescriptorKey
by adding the extra metadata, such as
key origin and derivation pathsource§impl<Ctx, K> IntoDescriptorKey<Ctx> for GeneratedKey<K, Ctx>where
Ctx: ScriptContext,
K: IntoDescriptorKey<Ctx>,
impl<Ctx, K> IntoDescriptorKey<Ctx> for GeneratedKey<K, Ctx>where
Ctx: ScriptContext,
K: IntoDescriptorKey<Ctx>,
source§fn into_descriptor_key(self) -> Result<DescriptorKey<Ctx>, KeyError>
fn into_descriptor_key(self) -> Result<DescriptorKey<Ctx>, KeyError>
Turn the key into a
DescriptorKey
within the requested ScriptContext
Auto Trait Implementations§
impl<K, Ctx> Freeze for GeneratedKey<K, Ctx>where
K: Freeze,
impl<K, Ctx> RefUnwindSafe for GeneratedKey<K, Ctx>where
K: RefUnwindSafe,
Ctx: RefUnwindSafe,
impl<K, Ctx> Send for GeneratedKey<K, Ctx>
impl<K, Ctx> Sync for GeneratedKey<K, Ctx>
impl<K, Ctx> Unpin for GeneratedKey<K, Ctx>
impl<K, Ctx> UnwindSafe for GeneratedKey<K, Ctx>where
K: UnwindSafe,
Ctx: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more