pub struct AccessKeyListView {
pub keys: Vec<AccessKeyInfoView>,
pub block_height: u64,
pub block_hash: CryptoHash,
}Expand description
Access key list from view_access_key_list RPC.
Fields§
§keys: Vec<AccessKeyInfoView>List of access keys.
block_height: u64Block height of the query.
block_hash: CryptoHashBlock hash of the query.
Trait Implementations§
Source§impl Clone for AccessKeyListView
impl Clone for AccessKeyListView
Source§fn clone(&self) -> AccessKeyListView
fn clone(&self) -> AccessKeyListView
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 AccessKeyListView
impl Debug for AccessKeyListView
Source§impl<'de> Deserialize<'de> for AccessKeyListView
impl<'de> Deserialize<'de> for AccessKeyListView
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 AccessKeyListView
impl RefUnwindSafe for AccessKeyListView
impl Send for AccessKeyListView
impl Sync for AccessKeyListView
impl Unpin for AccessKeyListView
impl UnsafeUnpin for AccessKeyListView
impl UnwindSafe for AccessKeyListView
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