Enum bdk_chain::bitcoin::key::FromWifError
#[non_exhaustive]pub enum FromWifError {
Base58(Error),
InvalidBase58PayloadLength(InvalidBase58PayloadLengthError),
InvalidAddressVersion(InvalidAddressVersionError),
Secp256k1(Error),
}
Expand description
Error generated from WIF key format.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Base58(Error)
A base58 decoding error.
InvalidBase58PayloadLength(InvalidBase58PayloadLengthError)
Base58 decoded data was an invalid length.
InvalidAddressVersion(InvalidAddressVersionError)
Base58 decoded data contained an invalid address version byte.
Secp256k1(Error)
A secp256k1 error.
Trait Implementations§
§impl Clone for FromWifError
impl Clone for FromWifError
§fn clone(&self) -> FromWifError
fn clone(&self) -> FromWifError
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 more§impl Debug for FromWifError
impl Debug for FromWifError
§impl Display for FromWifError
impl Display for FromWifError
§impl Error for FromWifError
impl Error for FromWifError
§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()
§impl From<Error> for FromWifError
impl From<Error> for FromWifError
§fn from(e: Error) -> FromWifError
fn from(e: Error) -> FromWifError
Converts to this type from the input type.
§impl From<Error> for FromWifError
impl From<Error> for FromWifError
§fn from(e: Error) -> FromWifError
fn from(e: Error) -> FromWifError
Converts to this type from the input type.
§impl From<Infallible> for FromWifError
impl From<Infallible> for FromWifError
§fn from(never: Infallible) -> FromWifError
fn from(never: Infallible) -> FromWifError
Converts to this type from the input type.
§impl From<InvalidAddressVersionError> for FromWifError
impl From<InvalidAddressVersionError> for FromWifError
§fn from(e: InvalidAddressVersionError) -> FromWifError
fn from(e: InvalidAddressVersionError) -> FromWifError
Converts to this type from the input type.
§impl From<InvalidBase58PayloadLengthError> for FromWifError
impl From<InvalidBase58PayloadLengthError> for FromWifError
§fn from(e: InvalidBase58PayloadLengthError) -> FromWifError
fn from(e: InvalidBase58PayloadLengthError) -> FromWifError
Converts to this type from the input type.
§impl PartialEq for FromWifError
impl PartialEq for FromWifError
§fn eq(&self, other: &FromWifError) -> bool
fn eq(&self, other: &FromWifError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FromWifError
impl StructuralPartialEq for FromWifError
Auto Trait Implementations§
impl Freeze for FromWifError
impl RefUnwindSafe for FromWifError
impl Send for FromWifError
impl Sync for FromWifError
impl Unpin for FromWifError
impl UnwindSafe for FromWifError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more