pub struct RevokeAPIKeyResponse {
pub revoked: bool,
pub key_id: String,
}Expand description
RevokeAPIKeyResponse model.
Fields§
§revoked: bool§key_id: StringTrait Implementations§
Source§impl Clone for RevokeAPIKeyResponse
impl Clone for RevokeAPIKeyResponse
Source§fn clone(&self) -> RevokeAPIKeyResponse
fn clone(&self) -> RevokeAPIKeyResponse
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 moreSource§impl Debug for RevokeAPIKeyResponse
impl Debug for RevokeAPIKeyResponse
Source§impl Default for RevokeAPIKeyResponse
impl Default for RevokeAPIKeyResponse
Source§fn default() -> RevokeAPIKeyResponse
fn default() -> RevokeAPIKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RevokeAPIKeyResponse
impl<'de> Deserialize<'de> for RevokeAPIKeyResponse
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 RevokeAPIKeyResponse
impl PartialEq for RevokeAPIKeyResponse
Source§impl Serialize for RevokeAPIKeyResponse
impl Serialize for RevokeAPIKeyResponse
impl StructuralPartialEq for RevokeAPIKeyResponse
Auto Trait Implementations§
impl Freeze for RevokeAPIKeyResponse
impl RefUnwindSafe for RevokeAPIKeyResponse
impl Send for RevokeAPIKeyResponse
impl Sync for RevokeAPIKeyResponse
impl Unpin for RevokeAPIKeyResponse
impl UnsafeUnpin for RevokeAPIKeyResponse
impl UnwindSafe for RevokeAPIKeyResponse
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