pub struct TransactionProofRef {
pub sender_id: AccountId,
pub transaction_hash: CryptoHash,
pub light_client_head: CryptoHash,
}Expand description
Reference type for transaction proof queries.
Identifies a transaction proof by the sender, transaction hash, and the light client head block hash.
Fields§
§sender_id: AccountId§transaction_hash: CryptoHash§light_client_head: CryptoHashTrait Implementations§
Source§impl Clone for TransactionProofRef
impl Clone for TransactionProofRef
Source§fn clone(&self) -> TransactionProofRef
fn clone(&self) -> TransactionProofRef
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 TransactionProofRef
impl RefUnwindSafe for TransactionProofRef
impl Send for TransactionProofRef
impl Sync for TransactionProofRef
impl Unpin for TransactionProofRef
impl UnsafeUnpin for TransactionProofRef
impl UnwindSafe for TransactionProofRef
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