pub trait OpTxReceipt: TxReceipt {
// Required methods
fn deposit_nonce(&self) -> Option<u64>;
fn deposit_receipt_version(&self) -> Option<u64>;
}
Expand description
Receipt is the result of a transaction execution.
Required Methods§
Sourcefn deposit_nonce(&self) -> Option<u64>
fn deposit_nonce(&self) -> Option<u64>
Returns the deposit nonce of the transaction.
Sourcefn deposit_receipt_version(&self) -> Option<u64>
fn deposit_receipt_version(&self) -> Option<u64>
Returns the deposit receipt version of the transaction.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.