pub struct AccessKeyView {
pub nonce: u64,
pub permission: AccessKeyPermissionView,
pub block_height: u64,
pub block_hash: CryptoHash,
}Expand description
Access key information from view_access_key RPC.
Fields§
§nonce: u64Nonce for replay protection.
permission: AccessKeyPermissionViewPermission level.
block_height: u64Block height of the query.
block_hash: CryptoHashBlock hash of the query.
Trait Implementations§
Source§impl Clone for AccessKeyView
impl Clone for AccessKeyView
Source§fn clone(&self) -> AccessKeyView
fn clone(&self) -> AccessKeyView
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 moreSource§impl Debug for AccessKeyView
impl Debug for AccessKeyView
Source§impl<'de> Deserialize<'de> for AccessKeyView
impl<'de> Deserialize<'de> for AccessKeyView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AccessKeyView
impl RefUnwindSafe for AccessKeyView
impl Send for AccessKeyView
impl Sync for AccessKeyView
impl Unpin for AccessKeyView
impl UnsafeUnpin for AccessKeyView
impl UnwindSafe for AccessKeyView
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