Enum bdk_chain::bitcoin::key::FromSliceError
#[non_exhaustive]pub enum FromSliceError {
InvalidKeyPrefix(u8),
Secp256k1(Error),
InvalidLength(usize),
}
Expand description
Error returned while generating key from slice.
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.
InvalidKeyPrefix(u8)
Invalid key prefix error.
Secp256k1(Error)
A Secp256k1 error.
InvalidLength(usize)
Invalid Length of the slice.
Trait Implementations§
§impl Clone for FromSliceError
impl Clone for FromSliceError
§fn clone(&self) -> FromSliceError
fn clone(&self) -> FromSliceError
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 FromSliceError
impl Debug for FromSliceError
§impl Display for FromSliceError
impl Display for FromSliceError
§impl Error for FromSliceError
impl Error for FromSliceError
§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 FromSliceError
impl From<Error> for FromSliceError
§fn from(e: Error) -> FromSliceError
fn from(e: Error) -> FromSliceError
Converts to this type from the input type.
§impl From<FromSliceError> for ParsePublicKeyError
impl From<FromSliceError> for ParsePublicKeyError
§fn from(e: FromSliceError) -> ParsePublicKeyError
fn from(e: FromSliceError) -> ParsePublicKeyError
Converts to this type from the input type.
§impl From<Infallible> for FromSliceError
impl From<Infallible> for FromSliceError
§fn from(never: Infallible) -> FromSliceError
fn from(never: Infallible) -> FromSliceError
Converts to this type from the input type.
§impl PartialEq for FromSliceError
impl PartialEq for FromSliceError
§fn eq(&self, other: &FromSliceError) -> bool
fn eq(&self, other: &FromSliceError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FromSliceError
impl StructuralPartialEq for FromSliceError
Auto Trait Implementations§
impl Freeze for FromSliceError
impl RefUnwindSafe for FromSliceError
impl Send for FromSliceError
impl Sync for FromSliceError
impl Unpin for FromSliceError
impl UnwindSafe for FromSliceError
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