[]Struct bitcoin::util::taproot::TapSighashHash

pub struct TapSighashHash(_);

Taproot-tagged hash for the taproot signature hash

Methods

impl TapSighashHash

pub fn from_hash(inner: Hash<TapSighashTag>) -> TapSighashHash

Create this type from the inner hash type.

pub fn as_hash(&self) -> Hash<TapSighashTag>

Convert this type into the inner hash type.

Trait Implementations

impl From<Hash<TapSighashTag>> for TapSighashHash

impl From<TapSighashHash> for Hash<TapSighashTag>

impl AsRef<[u8]> for TapSighashHash

impl Ord for TapSighashHash

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<TapSighashHash> for TapSighashHash

impl Default for TapSighashHash

impl Clone for TapSighashHash

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<TapSighashHash> for TapSighashHash

impl Eq for TapSighashHash

impl Copy for TapSighashHash

impl Display for TapSighashHash

impl Debug for TapSighashHash

impl Deref for TapSighashHash

type Target = [u8]

The resulting type after dereferencing.

impl Index<usize> for TapSighashHash

type Output = u8

The returned type after indexing.

impl Index<Range<usize>> for TapSighashHash

type Output = [u8]

The returned type after indexing.

impl Index<RangeFrom<usize>> for TapSighashHash

type Output = [u8]

The returned type after indexing.

impl Index<RangeTo<usize>> for TapSighashHash

type Output = [u8]

The returned type after indexing.

impl Index<RangeFull> for TapSighashHash

type Output = [u8]

The returned type after indexing.

impl Hash for TapSighashHash

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl FromStr for TapSighashHash

type Err = Error

The associated error which can be returned from parsing.

impl LowerHex for TapSighashHash

impl Borrow<[u8]> for TapSighashHash

impl Hash for TapSighashHash

type Engine = <Hash<TapSighashTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions. Read more

type Inner = <Hash<TapSighashTag> as Hash>::Inner

The byte array that represents the hash internally

fn hash(data: &[u8]) -> Self[src]

Hashes some bytes

Auto Trait Implementations

impl Unpin for TapSighashHash

impl Sync for TapSighashHash

impl Send for TapSighashHash

impl UnwindSafe for TapSighashHash

impl RefUnwindSafe for TapSighashHash

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToHex for T where
    T: LowerHex
[src]

fn to_hex(&self) -> String[src]

Outputs the hash in hexadecimal form

impl<T> FromHex for T where
    T: Hash
[src]

fn from_hex(s: &str) -> Result<Self, Error>[src]

Produce an object from a hex string

impl<T> ToBase32 for T where
    T: AsRef<[u8]>, 
[src]

fn to_base32(&self) -> Vec<u5>[src]

Convert Self to base32 vector

impl<T> Base32Len for T where
    T: AsRef<[u8]>, 
[src]

impl<'f, T> CheckBase32<Vec<u5>> for T where
    T: AsRef<[u8]>, 
[src]

type Err = Error

Error type if conversion fails