#[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§
Source§impl Clone for SigFromSliceError
impl Clone for SigFromSliceError
Source§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 moreSource§impl Debug for SigFromSliceError
impl Debug for SigFromSliceError
Source§impl Display for SigFromSliceError
impl Display for SigFromSliceError
Source§impl Error for SigFromSliceError
Available on crate feature std
only.
impl Error for SigFromSliceError
Available on crate feature
std
only.Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 From<Error> for SigFromSliceError
impl From<Error> for SigFromSliceError
Source§impl From<Infallible> for SigFromSliceError
impl From<Infallible> for SigFromSliceError
Source§fn from(never: Infallible) -> Self
fn from(never: Infallible) -> Self
Converts to this type from the input type.
Source§impl From<InvalidSighashTypeError> for SigFromSliceError
impl From<InvalidSighashTypeError> for SigFromSliceError
Source§fn from(err: InvalidSighashTypeError) -> Self
fn from(err: InvalidSighashTypeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SigFromSliceError
impl PartialEq for SigFromSliceError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)