[][src]Struct bitcoin::util::hash::Sha256dHash

pub struct Sha256dHash(_);

A Bitcoin hash, 32-bytes, computed from x as SHA256(SHA256(x))

Methods

impl Sha256dHash
[src]

pub fn as_ptr(&self) -> *const u8
[src]

Converts the object to a raw pointer

pub fn as_mut_ptr(&mut self) -> *mut u8
[src]

Converts the object to a mutable raw pointer

pub fn len(&self) -> usize
[src]

Returns the length of the object as an array

pub fn is_empty(&self) -> bool
[src]

Returns whether the object, as an array, is empty. Always false.

pub fn as_bytes(&self) -> &[u8; 32]
[src]

Returns the underlying bytes.

pub fn to_bytes(&self) -> [u8; 32]
[src]

Returns the underlying bytes.

pub fn into_bytes(self) -> [u8; 32]
[src]

Returns the underlying bytes.

impl Sha256dHash
[src]

pub fn from_data(data: &[u8]) -> Sha256dHash
[src]

Create a hash by hashing some data

pub fn into_le(self) -> Uint256
[src]

Converts a hash to a little-endian Uint256

pub fn into_be(self) -> Uint256
[src]

Converts a hash to a big-endian Uint256

pub fn into_hash32(self) -> Hash32
[src]

Converts a hash to a Hash32 by truncation

pub fn into_hash48(self) -> Hash48
[src]

Converts a hash to a Hash48 by truncation

pub fn from_hex(s: &str) -> Result<Sha256dHash, HexError>
[src]

Decodes a big-endian (i.e. reversed vs sha256sum output) hex string as a Sha256dHash

pub fn into_hash64(self) -> Hash64
[src]

Converts a hash to a Hash64 by truncation

pub fn le_hex_string(&self) -> String
[src]

Human-readable hex output

pub fn be_hex_string(&self) -> String
[src]

Human-readable hex output

Trait Implementations

impl<S: Encoder> Encodable<S> for Sha256dHash
[src]

impl<D: Decoder> Decodable<D> for Sha256dHash
[src]

impl<'a> From<&'a [u8]> for Sha256dHash
[src]

impl Eq for Sha256dHash
[src]

impl PartialOrd<Sha256dHash> for Sha256dHash
[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Copy for Sha256dHash
[src]

impl Default for Sha256dHash
[src]

impl PartialEq<Sha256dHash> for Sha256dHash
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for Sha256dHash
[src]

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

Performs copy-assignment from source. Read more

impl Ord for Sha256dHash
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Debug for Sha256dHash
[src]

fn fmt(&self, f: &mut Formatter) -> Result
[src]

Output the raw sha256d hash, not reversing it (unlike Display and what Core does for user display)

impl Display for Sha256dHash
[src]

fn fmt(&self, f: &mut Formatter) -> Result
[src]

Output the sha256d hash in reverse, copying Bitcoin Core's behaviour

impl UpperHex for Sha256dHash
[src]

fn fmt(&self, f: &mut Formatter) -> Result
[src]

Output the sha256d hash in reverse, copying Bitcoin Core's behaviour

impl LowerHex for Sha256dHash
[src]

fn fmt(&self, f: &mut Formatter) -> Result
[src]

Output the sha256d hash in reverse, copying Bitcoin Core's behaviour

impl Hash for Sha256dHash
[src]

impl Index<usize> for Sha256dHash
[src]

type Output = u8

The returned type after indexing.

impl Index<Range<usize>> for Sha256dHash
[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeTo<usize>> for Sha256dHash
[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeFrom<usize>> for Sha256dHash
[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeFull> for Sha256dHash
[src]

type Output = [u8]

The returned type after indexing.

impl FromStr for Sha256dHash
[src]

type Err = HexError

The associated error which can be returned from parsing.

impl Rand for Sha256dHash
[src]

Auto Trait Implementations

impl Send for Sha256dHash

impl Sync for Sha256dHash

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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