Enum bdk_chain::bitcoin::taproot::SigFromSliceError
#[non_exhaustive]pub enum SigFromSliceError {
SighashType(InvalidSighashTypeError),
Secp256k1(Error),
InvalidSignatureSize(usize),
}
Expand description
An error constructing a taproot::Signature
from a byte 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.
SighashType(InvalidSighashTypeError)
Invalid signature hash type.
Secp256k1(Error)
A secp256k1 error.
InvalidSignatureSize(usize)
Invalid taproot signature size
Trait Implementations§
§impl Clone for SigFromSliceError
impl Clone for SigFromSliceError
§fn clone(&self) -> SigFromSliceError
fn clone(&self) -> SigFromSliceError
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 SigFromSliceError
impl Debug for SigFromSliceError
§impl Display for SigFromSliceError
impl Display for SigFromSliceError
§impl Error for SigFromSliceError
impl Error for SigFromSliceError
§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 SigFromSliceError
impl From<Error> for SigFromSliceError
§fn from(e: Error) -> SigFromSliceError
fn from(e: Error) -> SigFromSliceError
Converts to this type from the input type.
§impl From<Infallible> for SigFromSliceError
impl From<Infallible> for SigFromSliceError
§fn from(never: Infallible) -> SigFromSliceError
fn from(never: Infallible) -> SigFromSliceError
Converts to this type from the input type.
§impl From<InvalidSighashTypeError> for SigFromSliceError
impl From<InvalidSighashTypeError> for SigFromSliceError
§fn from(err: InvalidSighashTypeError) -> SigFromSliceError
fn from(err: InvalidSighashTypeError) -> SigFromSliceError
Converts to this type from the input type.
§impl PartialEq for SigFromSliceError
impl PartialEq for SigFromSliceError
§fn eq(&self, other: &SigFromSliceError) -> bool
fn eq(&self, other: &SigFromSliceError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SigFromSliceError
impl StructuralPartialEq for SigFromSliceError
Auto Trait Implementations§
impl Freeze for SigFromSliceError
impl RefUnwindSafe for SigFromSliceError
impl Send for SigFromSliceError
impl Sync for SigFromSliceError
impl Unpin for SigFromSliceError
impl UnwindSafe for SigFromSliceError
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