pub trait TxHashRef {
// Required method
fn tx_hash(&self) -> &TxHash;
}Expand description
Trait for types that provide access to a transaction hash reference.
This trait is implemented by types that contain or can provide a reference to a
transaction hash (TxHash). It provides a standard interface for accessing
transaction hashes without requiring ownership.