pub struct TransactionStatusRef {
pub sender_account_id: AccountId,
pub tx_hash: CryptoHash,
pub wait_until: TxExecutionStatus,
}Expand description
Reference type for transaction status queries.
Identifies a transaction by its hash, sender account, and the desired execution status to wait for.
Fields§
§sender_account_id: AccountId§tx_hash: CryptoHash§wait_until: TxExecutionStatusTrait Implementations§
Source§impl Clone for TransactionStatusRef
impl Clone for TransactionStatusRef
Source§fn clone(&self) -> TransactionStatusRef
fn clone(&self) -> TransactionStatusRef
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 moreAuto Trait Implementations§
impl Freeze for TransactionStatusRef
impl RefUnwindSafe for TransactionStatusRef
impl Send for TransactionStatusRef
impl Sync for TransactionStatusRef
impl Unpin for TransactionStatusRef
impl UnsafeUnpin for TransactionStatusRef
impl UnwindSafe for TransactionStatusRef
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