pub struct RpcViewAccessKeyListResponse {
pub block_hash: CryptoHash,
pub block_height: u64,
pub keys: Vec<AccessKeyInfoView>,
}Expand description
Lists access keys
JSON schema
{
"description": "Lists access keys",
"type": "object",
"required": [
"block_hash",
"block_height",
"keys"
],
"properties": {
"block_hash": {
"$ref": "#/components/schemas/CryptoHash"
},
"block_height": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"keys": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AccessKeyInfoView"
}
}
}
}Fields§
§block_hash: CryptoHash§block_height: u64§keys: Vec<AccessKeyInfoView>Trait Implementations§
Source§impl Clone for RpcViewAccessKeyListResponse
impl Clone for RpcViewAccessKeyListResponse
Source§fn clone(&self) -> RpcViewAccessKeyListResponse
fn clone(&self) -> RpcViewAccessKeyListResponse
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 RpcViewAccessKeyListResponse
impl Debug for RpcViewAccessKeyListResponse
Source§impl<'de> Deserialize<'de> for RpcViewAccessKeyListResponse
impl<'de> Deserialize<'de> for RpcViewAccessKeyListResponse
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
Source§impl From<&RpcViewAccessKeyListResponse> for RpcViewAccessKeyListResponse
impl From<&RpcViewAccessKeyListResponse> for RpcViewAccessKeyListResponse
Source§fn from(value: &RpcViewAccessKeyListResponse) -> Self
fn from(value: &RpcViewAccessKeyListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcViewAccessKeyListResponse
impl RefUnwindSafe for RpcViewAccessKeyListResponse
impl Send for RpcViewAccessKeyListResponse
impl Sync for RpcViewAccessKeyListResponse
impl Unpin for RpcViewAccessKeyListResponse
impl UnsafeUnpin for RpcViewAccessKeyListResponse
impl UnwindSafe for RpcViewAccessKeyListResponse
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