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: PublicKeyA 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§const fn clone_from(&mut self, source: &Self)
const 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<DeleteKeyAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeleteKeyAction, <__D as Deserializer<'de>>::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) -> DeleteKeyAction
fn from(value: &DeleteKeyAction) -> DeleteKeyAction
Converts to this type from the input type.
Source§impl From<DeleteKeyAction> for Action
impl From<DeleteKeyAction> for Action
Source§fn from(value: DeleteKeyAction) -> Action
fn from(value: DeleteKeyAction) -> Action
Converts to this type from the input type.
Source§impl Serialize for DeleteKeyAction
impl Serialize for DeleteKeyAction
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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