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