Struct bitcoin::sighash::InvalidSighashTypeError
source · pub struct InvalidSighashTypeError(pub u32);
Expand description
Integer is not a consensus valid sighash type.
Tuple Fields§
§0: u32
Trait Implementations§
source§impl Clone for InvalidSighashTypeError
impl Clone for InvalidSighashTypeError
source§fn clone(&self) -> InvalidSighashTypeError
fn clone(&self) -> InvalidSighashTypeError
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 InvalidSighashTypeError
impl Debug for InvalidSighashTypeError
source§impl Display for InvalidSighashTypeError
impl Display for InvalidSighashTypeError
source§impl Error for InvalidSighashTypeError
impl Error for InvalidSighashTypeError
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 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<InvalidSighashTypeError> for InvalidSighashTypeError
impl PartialEq<InvalidSighashTypeError> for InvalidSighashTypeError
source§fn eq(&self, other: &InvalidSighashTypeError) -> bool
fn eq(&self, other: &InvalidSighashTypeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InvalidSighashTypeError
impl StructuralEq for InvalidSighashTypeError
impl StructuralPartialEq for InvalidSighashTypeError
Auto Trait Implementations§
impl RefUnwindSafe for InvalidSighashTypeError
impl Send for InvalidSighashTypeError
impl Sync for InvalidSighashTypeError
impl Unpin for InvalidSighashTypeError
impl UnwindSafe for InvalidSighashTypeError
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