Struct oasis_runtime_sdk::sender::SenderMeta
source · pub struct SenderMeta {
pub address: Address,
pub tx_nonce: u64,
pub state_nonce: u64,
}
Expand description
Transaction sender metadata.
Fields§
§address: Address
Sender address.
tx_nonce: u64
Sender nonce contained in the transaction.
state_nonce: u64
Sender nonce contained in runtime state.
Implementations§
Trait Implementations§
source§impl Clone for SenderMeta
impl Clone for SenderMeta
source§fn clone(&self) -> SenderMeta
fn clone(&self) -> SenderMeta
Returns a copy 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 moresource§impl Debug for SenderMeta
impl Debug for SenderMeta
source§impl Default for SenderMeta
impl Default for SenderMeta
source§fn default() -> SenderMeta
fn default() -> SenderMeta
Returns the “default value” for a type. Read more
source§impl PartialEq for SenderMeta
impl PartialEq for SenderMeta
source§fn eq(&self, other: &SenderMeta) -> bool
fn eq(&self, other: &SenderMeta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SenderMeta
impl StructuralPartialEq for SenderMeta
Auto Trait Implementations§
impl Freeze for SenderMeta
impl RefUnwindSafe for SenderMeta
impl Send for SenderMeta
impl Sync for SenderMeta
impl Unpin for SenderMeta
impl UnwindSafe for SenderMeta
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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
Compare self to
key
and return true
if they are equal.