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