Struct bitcoin::blockdata::transaction::NonStandardSighashType
source · pub struct NonStandardSighashType(pub u32);
Expand description
This type is consensus valid but an input including it would prevent the transaction from being relayed on today’s Bitcoin network.
Tuple Fields§
§0: u32
Trait Implementations§
source§impl Clone for NonStandardSighashType
impl Clone for NonStandardSighashType
source§fn clone(&self) -> NonStandardSighashType
fn clone(&self) -> NonStandardSighashType
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 NonStandardSighashType
impl Debug for NonStandardSighashType
source§impl Display for NonStandardSighashType
impl Display for NonStandardSighashType
source§impl Error for NonStandardSighashType
impl Error for NonStandardSighashType
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<NonStandardSighashType> for EcdsaSigError
impl From<NonStandardSighashType> for EcdsaSigError
source§fn from(err: NonStandardSighashType) -> Self
fn from(err: NonStandardSighashType) -> Self
Converts to this type from the input type.
source§impl Hash for NonStandardSighashType
impl Hash for NonStandardSighashType
source§impl Ord for NonStandardSighashType
impl Ord for NonStandardSighashType
source§fn cmp(&self, other: &NonStandardSighashType) -> Ordering
fn cmp(&self, other: &NonStandardSighashType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<NonStandardSighashType> for NonStandardSighashType
impl PartialEq<NonStandardSighashType> for NonStandardSighashType
source§fn eq(&self, other: &NonStandardSighashType) -> bool
fn eq(&self, other: &NonStandardSighashType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<NonStandardSighashType> for NonStandardSighashType
impl PartialOrd<NonStandardSighashType> for NonStandardSighashType
source§fn partial_cmp(&self, other: &NonStandardSighashType) -> Option<Ordering>
fn partial_cmp(&self, other: &NonStandardSighashType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for NonStandardSighashType
impl Eq for NonStandardSighashType
impl StructuralEq for NonStandardSighashType
impl StructuralPartialEq for NonStandardSighashType
Auto Trait Implementations§
impl RefUnwindSafe for NonStandardSighashType
impl Send for NonStandardSighashType
impl Sync for NonStandardSighashType
impl Unpin for NonStandardSighashType
impl UnwindSafe for NonStandardSighashType
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