Enum bdk_wallet::keys::KeyError
source · pub enum KeyError {
InvalidScriptContext,
InvalidNetwork,
InvalidChecksum,
Message(String),
Bip32(Error),
Miniscript(Error),
}
Expand description
Errors thrown while working with keys
Variants§
InvalidScriptContext
The key cannot exist in the given script context
InvalidNetwork
The key is not valid for the given network
InvalidChecksum
The key has an invalid checksum
Message(String)
Custom error message
Bip32(Error)
BIP32 error
Miniscript(Error)
Miniscript error
Trait Implementations§
source§impl Error for KeyError
impl Error for KeyError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for KeyError
impl PartialEq for KeyError
impl StructuralPartialEq for KeyError
Auto Trait Implementations§
impl Freeze for KeyError
impl RefUnwindSafe for KeyError
impl Send for KeyError
impl Sync for KeyError
impl Unpin for KeyError
impl UnwindSafe for KeyError
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