pub struct PubkeyHash(/* private fields */);Expand description
A hash of a public key.
Implementations§
Source§impl PubkeyHash
impl PubkeyHash
Sourcepub fn from_raw_hash(inner: Hash) -> PubkeyHash
pub fn from_raw_hash(inner: Hash) -> PubkeyHash
Creates this wrapper type from the inner hash type.
Sourcepub fn to_raw_hash(self) -> Hash
pub fn to_raw_hash(self) -> Hash
Returns the inner hash (sha256, sh256d etc.).
Sourcepub fn as_raw_hash(&self) -> &Hash
pub fn as_raw_hash(&self) -> &Hash
Returns a reference to the inner hash (sha256, sh256d etc.).
Trait Implementations§
Source§impl AsRef<[u8]> for PubkeyHash
impl AsRef<[u8]> for PubkeyHash
Source§impl AsRef<PushBytes> for PubkeyHash
impl AsRef<PushBytes> for PubkeyHash
Source§impl Borrow<[u8]> for PubkeyHash
impl Borrow<[u8]> for PubkeyHash
Source§impl Clone for PubkeyHash
impl Clone for PubkeyHash
Source§fn clone(&self) -> PubkeyHash
fn clone(&self) -> PubkeyHash
Returns a duplicate 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 PubkeyHash
impl Debug for PubkeyHash
Source§impl<'de> Deserialize<'de> for PubkeyHash
impl<'de> Deserialize<'de> for PubkeyHash
Source§fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PubkeyHash
impl Display for PubkeyHash
Source§impl From<&CompressedPublicKey> for PubkeyHash
impl From<&CompressedPublicKey> for PubkeyHash
Source§fn from(key: &CompressedPublicKey) -> PubkeyHash
fn from(key: &CompressedPublicKey) -> PubkeyHash
Converts to this type from the input type.
Source§impl From<&PublicKey> for PubkeyHash
impl From<&PublicKey> for PubkeyHash
Source§fn from(key: &PublicKey) -> PubkeyHash
fn from(key: &PublicKey) -> PubkeyHash
Converts to this type from the input type.
Source§impl From<CompressedPublicKey> for PubkeyHash
impl From<CompressedPublicKey> for PubkeyHash
Source§fn from(key: CompressedPublicKey) -> PubkeyHash
fn from(key: CompressedPublicKey) -> PubkeyHash
Converts to this type from the input type.
Source§impl From<Hash> for PubkeyHash
impl From<Hash> for PubkeyHash
Source§fn from(inner: Hash) -> PubkeyHash
fn from(inner: Hash) -> PubkeyHash
Converts to this type from the input type.
Source§impl From<PubkeyHash> for AddressPayload
impl From<PubkeyHash> for AddressPayload
Source§fn from(v: PubkeyHash) -> AddressPayload
fn from(v: PubkeyHash) -> AddressPayload
Converts to this type from the input type.
Source§impl From<PubkeyHash> for Hash
impl From<PubkeyHash> for Hash
Source§fn from(hashtype: PubkeyHash) -> Hash
fn from(hashtype: PubkeyHash) -> Hash
Converts to this type from the input type.
Source§impl From<PubkeyHash> for PushBytesBuf
impl From<PubkeyHash> for PushBytesBuf
Source§fn from(hash: PubkeyHash) -> PushBytesBuf
fn from(hash: PubkeyHash) -> PushBytesBuf
Converts to this type from the input type.
Source§impl From<PublicKey> for PubkeyHash
impl From<PublicKey> for PubkeyHash
Source§fn from(key: PublicKey) -> PubkeyHash
fn from(key: PublicKey) -> PubkeyHash
Converts to this type from the input type.
Source§impl FromStr for PubkeyHash
impl FromStr for PubkeyHash
Source§type Err = HexToArrayError
type Err = HexToArrayError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>
fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PubkeyHash
impl Hash for PubkeyHash
Source§impl Hash for PubkeyHash
impl Hash for PubkeyHash
Source§const DISPLAY_BACKWARD: bool = false
const DISPLAY_BACKWARD: bool = false
Flag indicating whether user-visible serializations of this hash
should be backward. For some reason Satoshi decided this should be
true for
Sha256dHash, so here we are.Source§type Engine = <Hash as Hash>::Engine
type Engine = <Hash 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.Source§fn from_engine(e: <PubkeyHash as Hash>::Engine) -> PubkeyHash
fn from_engine(e: <PubkeyHash as Hash>::Engine) -> PubkeyHash
Produces a hash from the current state of a given engine.
Source§fn from_slice(sl: &[u8]) -> Result<PubkeyHash, FromSliceError>
fn from_slice(sl: &[u8]) -> Result<PubkeyHash, FromSliceError>
Copies a byte slice into a hash object.
Source§fn from_byte_array(bytes: <PubkeyHash as Hash>::Bytes) -> PubkeyHash
fn from_byte_array(bytes: <PubkeyHash as Hash>::Bytes) -> PubkeyHash
Constructs a hash from the underlying byte array.
Source§fn to_byte_array(self) -> <PubkeyHash as Hash>::Bytes
fn to_byte_array(self) -> <PubkeyHash as Hash>::Bytes
Returns the underlying byte array.
Source§fn as_byte_array(&self) -> &<PubkeyHash as Hash>::Bytes
fn as_byte_array(&self) -> &<PubkeyHash as Hash>::Bytes
Returns a reference to the underlying byte array.
Source§fn all_zeros() -> PubkeyHash
fn all_zeros() -> PubkeyHash
Returns an all zero hash. Read more
Source§fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
Hashes all the byte slices retrieved from the iterator together.
Source§impl<I> Index<I> for PubkeyHashwhere
I: SliceIndex<[u8]>,
impl<I> Index<I> for PubkeyHashwhere
I: SliceIndex<[u8]>,
Source§impl LowerHex for PubkeyHash
impl LowerHex for PubkeyHash
Source§impl Ord for PubkeyHash
impl Ord for PubkeyHash
Source§fn cmp(&self, other: &PubkeyHash) -> Ordering
fn cmp(&self, other: &PubkeyHash) -> 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 for PubkeyHash
impl PartialEq for PubkeyHash
Source§impl PartialOrd for PubkeyHash
impl PartialOrd for PubkeyHash
Source§impl SerdeHash for PubkeyHash
impl SerdeHash for PubkeyHash
Source§fn from_slice_delegated(sl: &[u8]) -> Result<PubkeyHash, FromSliceError>
fn from_slice_delegated(sl: &[u8]) -> Result<PubkeyHash, FromSliceError>
Helper function to turn a deserialized slice into the correct hash type.
Source§fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Do serde serialization.
Source§fn deserialize<'de, D>(d: D) -> Result<Self, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<'de, D>(d: D) -> Result<Self, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Do serde deserialization.
Source§impl Serialize for PubkeyHash
impl Serialize for PubkeyHash
Source§fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl UpperHex for PubkeyHash
impl UpperHex for PubkeyHash
impl Copy for PubkeyHash
impl Eq for PubkeyHash
impl StructuralPartialEq for PubkeyHash
Auto Trait Implementations§
impl Freeze for PubkeyHash
impl RefUnwindSafe for PubkeyHash
impl Send for PubkeyHash
impl Sync for PubkeyHash
impl Unpin for PubkeyHash
impl UnwindSafe for PubkeyHash
Blanket Implementations§
Source§impl<T> Base32Len for T
impl<T> Base32Len for T
Source§fn base32_len(&self) -> usize
fn base32_len(&self) -> usize
Calculate the base32 serialized length
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
Source§impl<T> CheckBase32<Vec<u5>> for T
impl<T> CheckBase32<Vec<u5>> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> ToBase32 for T
impl<T> ToBase32 for T
Source§fn write_base32<W>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err>where
W: WriteBase32,
fn write_base32<W>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err>where
W: WriteBase32,
Encode as base32 and write it to the supplied writer
Implementations shouldn’t allocate.
Source§impl<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Upper case
letters are used (e.g. F9B4CA)