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