pub struct Wtxid(/* private fields */);
Expand description
A bitcoin witness transaction ID.
Implementations§
§impl Wtxid
impl Wtxid
pub fn from_raw_hash(inner: Hash) -> Wtxid
pub fn from_raw_hash(inner: Hash) -> Wtxid
Creates this wrapper type from the inner hash type.
pub fn to_raw_hash(self) -> Hash
pub fn to_raw_hash(self) -> Hash
Returns the inner hash (sha256, sh256d etc.).
pub 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§
§impl<'de> Deserialize<'de> for Wtxid
impl<'de> Deserialize<'de> for Wtxid
§fn deserialize<D>(d: D) -> Result<Wtxid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<Wtxid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<&Transaction> for Wtxid
impl From<&Transaction> for Wtxid
§fn from(tx: &Transaction) -> Wtxid
fn from(tx: &Transaction) -> Wtxid
Converts to this type from the input type.
§impl From<Transaction> for Wtxid
impl From<Transaction> for Wtxid
§fn from(tx: Transaction) -> Wtxid
fn from(tx: Transaction) -> Wtxid
Converts to this type from the input type.
§impl From<Wtxid> for WitnessMerkleNode
impl From<Wtxid> for WitnessMerkleNode
§fn from(wtxid: Wtxid) -> WitnessMerkleNode
fn from(wtxid: Wtxid) -> WitnessMerkleNode
Converts to this type from the input type.
§impl Hash for Wtxid
impl Hash for Wtxid
§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.§const DISPLAY_BACKWARD: bool = true
const DISPLAY_BACKWARD: bool = true
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.§fn from_engine(e: <Wtxid as Hash>::Engine) -> Wtxid
fn from_engine(e: <Wtxid as Hash>::Engine) -> Wtxid
Produces a hash from the current state of a given engine.
§fn from_slice(sl: &[u8]) -> Result<Wtxid, FromSliceError>
fn from_slice(sl: &[u8]) -> Result<Wtxid, FromSliceError>
Copies a byte slice into a hash object.
§fn from_byte_array(bytes: <Wtxid as Hash>::Bytes) -> Wtxid
fn from_byte_array(bytes: <Wtxid as Hash>::Bytes) -> Wtxid
Constructs a hash from the underlying byte array.
§fn to_byte_array(self) -> <Wtxid as Hash>::Bytes
fn to_byte_array(self) -> <Wtxid as Hash>::Bytes
Returns the underlying byte array.
§fn as_byte_array(&self) -> &<Wtxid as Hash>::Bytes
fn as_byte_array(&self) -> &<Wtxid as Hash>::Bytes
Returns a reference to the underlying byte array.
§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.
§impl<I> Index<I> for Wtxidwhere
I: SliceIndex<[u8]>,
impl<I> Index<I> for Wtxidwhere
I: SliceIndex<[u8]>,
§impl Ord for Wtxid
impl Ord for Wtxid
§impl PartialOrd for Wtxid
impl PartialOrd for Wtxid
§fn partial_cmp(&self, other: &Wtxid) -> Option<Ordering>
fn partial_cmp(&self, other: &Wtxid) -> 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 more§impl SerdeHash for Wtxid
impl SerdeHash for Wtxid
§fn from_slice_delegated(sl: &[u8]) -> Result<Wtxid, FromSliceError>
fn from_slice_delegated(sl: &[u8]) -> Result<Wtxid, FromSliceError>
Helper function to turn a deserialized slice into the correct hash type.
§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.
§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.
§impl Serialize for Wtxid
impl Serialize for Wtxid
§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
impl Copy for Wtxid
impl Eq for Wtxid
impl StructuralPartialEq for Wtxid
Auto Trait Implementations§
impl Freeze for Wtxid
impl RefUnwindSafe for Wtxid
impl Send for Wtxid
impl Sync for Wtxid
impl Unpin for Wtxid
impl UnwindSafe for Wtxid
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more