pub struct DeleteKeyData {
pub success: bool,
}Expand description
Deletion outcome carried by DeleteKeyResponse.
Fields§
§success: boolTrue when the key existed and was deleted.
Trait Implementations§
Source§impl Clone for DeleteKeyData
impl Clone for DeleteKeyData
Source§fn clone(&self) -> DeleteKeyData
fn clone(&self) -> DeleteKeyData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DeleteKeyData
Source§impl Debug for DeleteKeyData
impl Debug for DeleteKeyData
Source§impl Default for DeleteKeyData
impl Default for DeleteKeyData
Source§fn default() -> DeleteKeyData
fn default() -> DeleteKeyData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteKeyData
impl<'de> Deserialize<'de> for DeleteKeyData
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 PartialEq for DeleteKeyData
impl PartialEq for DeleteKeyData
Source§impl Serialize for DeleteKeyData
impl Serialize for DeleteKeyData
impl StructuralPartialEq for DeleteKeyData
Auto Trait Implementations§
impl Freeze for DeleteKeyData
impl RefUnwindSafe for DeleteKeyData
impl Send for DeleteKeyData
impl Sync for DeleteKeyData
impl Unpin for DeleteKeyData
impl UnsafeUnpin for DeleteKeyData
impl UnwindSafe for DeleteKeyData
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