Struct nostr_sdk::bitcoin::psbt::PsbtSighashType
pub struct PsbtSighashType { /* private fields */ }Expand description
A Signature hash type for the corresponding input. As of taproot upgrade, the signature hash
type can be either EcdsaSighashType or TapSighashType but it is not possible to know
directly which signature hash type the user is dealing with. Therefore, the user is responsible
for converting to/from PsbtSighashType from/to the desired signature hash type they need.
Implementations§
§impl PsbtSighashType
impl PsbtSighashType
pub fn ecdsa_hash_ty(self) -> Result<EcdsaSighashType, NonStandardSighashType>
pub fn ecdsa_hash_ty(self) -> Result<EcdsaSighashType, NonStandardSighashType>
Returns the EcdsaSighashType if the PsbtSighashType can be
converted to one.
pub fn taproot_hash_ty(self) -> Result<TapSighashType, Error>
pub fn taproot_hash_ty(self) -> Result<TapSighashType, Error>
Returns the TapSighashType if the PsbtSighashType can be
converted to one.
pub fn from_u32(n: u32) -> PsbtSighashType
pub fn from_u32(n: u32) -> PsbtSighashType
Creates a PsbtSighashType from a raw u32.
Allows construction of a non-standard or non-valid sighash flag
(EcdsaSighashType, TapSighashType respectively).
pub fn to_u32(self) -> u32
pub fn to_u32(self) -> u32
Converts PsbtSighashType to a raw u32 sighash flag.
No guarantees are made as to the standardness or validity of the returned value.
Trait Implementations§
§impl Clone for PsbtSighashType
impl Clone for PsbtSighashType
§fn clone(&self) -> PsbtSighashType
fn clone(&self) -> PsbtSighashType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more§impl Debug for PsbtSighashType
impl Debug for PsbtSighashType
§impl Display for PsbtSighashType
impl Display for PsbtSighashType
§impl From<EcdsaSighashType> for PsbtSighashType
impl From<EcdsaSighashType> for PsbtSighashType
§fn from(ecdsa_hash_ty: EcdsaSighashType) -> PsbtSighashType
fn from(ecdsa_hash_ty: EcdsaSighashType) -> PsbtSighashType
§impl From<TapSighashType> for PsbtSighashType
impl From<TapSighashType> for PsbtSighashType
§fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType
fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType
§impl FromStr for PsbtSighashType
impl FromStr for PsbtSighashType
§type Err = SighashTypeParseError
type Err = SighashTypeParseError
§fn from_str(
s: &str
) -> Result<PsbtSighashType, <PsbtSighashType as FromStr>::Err>
fn from_str( s: &str ) -> Result<PsbtSighashType, <PsbtSighashType as FromStr>::Err>
s to return a value of this type. Read more§impl Hash for PsbtSighashType
impl Hash for PsbtSighashType
§impl Ord for PsbtSighashType
impl Ord for PsbtSighashType
§impl PartialEq<PsbtSighashType> for PsbtSighashType
impl PartialEq<PsbtSighashType> for PsbtSighashType
§fn eq(&self, other: &PsbtSighashType) -> bool
fn eq(&self, other: &PsbtSighashType) -> bool
self and other values to be equal, and is used
by ==.§impl PartialOrd<PsbtSighashType> for PsbtSighashType
impl PartialOrd<PsbtSighashType> for PsbtSighashType
§fn partial_cmp(&self, other: &PsbtSighashType) -> Option<Ordering>
fn partial_cmp(&self, other: &PsbtSighashType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moreimpl Copy for PsbtSighashType
impl Eq for PsbtSighashType
impl StructuralEq for PsbtSighashType
impl StructuralPartialEq for PsbtSighashType
Auto Trait Implementations§
impl RefUnwindSafe for PsbtSighashType
impl Send for PsbtSighashType
impl Sync for PsbtSighashType
impl Unpin for PsbtSighashType
impl UnwindSafe for PsbtSighashType
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.