pub struct RotateIssuedApiKeyResponse {
pub issued_api_key: Option<Box<IssuedApiKey>>,
pub old_issued_api_key: Option<Box<IssuedApiKey>>,
pub secret: Option<String>,
}Fields§
§issued_api_key: Option<Box<IssuedApiKey>>§old_issued_api_key: Option<Box<IssuedApiKey>>§secret: Option<String>Implementations§
Source§impl RotateIssuedApiKeyResponse
impl RotateIssuedApiKeyResponse
pub fn new() -> RotateIssuedApiKeyResponse
Trait Implementations§
Source§impl Clone for RotateIssuedApiKeyResponse
impl Clone for RotateIssuedApiKeyResponse
Source§fn clone(&self) -> RotateIssuedApiKeyResponse
fn clone(&self) -> RotateIssuedApiKeyResponse
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 RotateIssuedApiKeyResponse
impl Debug for RotateIssuedApiKeyResponse
Source§impl Default for RotateIssuedApiKeyResponse
impl Default for RotateIssuedApiKeyResponse
Source§fn default() -> RotateIssuedApiKeyResponse
fn default() -> RotateIssuedApiKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RotateIssuedApiKeyResponse
impl<'de> Deserialize<'de> for RotateIssuedApiKeyResponse
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 RotateIssuedApiKeyResponse
impl PartialEq for RotateIssuedApiKeyResponse
Source§fn eq(&self, other: &RotateIssuedApiKeyResponse) -> bool
fn eq(&self, other: &RotateIssuedApiKeyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RotateIssuedApiKeyResponse
Auto Trait Implementations§
impl Freeze for RotateIssuedApiKeyResponse
impl RefUnwindSafe for RotateIssuedApiKeyResponse
impl Send for RotateIssuedApiKeyResponse
impl Sync for RotateIssuedApiKeyResponse
impl Unpin for RotateIssuedApiKeyResponse
impl UnsafeUnpin for RotateIssuedApiKeyResponse
impl UnwindSafe for RotateIssuedApiKeyResponse
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