pub struct ApiKeyResponse {
pub api_key: Option<Box<ApiKey>>,
}
Expand description
ApiKeyResponse : Authentication key response object.
Fields§
§api_key: Option<Box<ApiKey>>
Implementations§
source§impl ApiKeyResponse
impl ApiKeyResponse
sourcepub fn new() -> ApiKeyResponse
pub fn new() -> ApiKeyResponse
Authentication key response object.
Trait Implementations§
source§impl Clone for ApiKeyResponse
impl Clone for ApiKeyResponse
source§fn clone(&self) -> ApiKeyResponse
fn clone(&self) -> ApiKeyResponse
Returns a copy 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 ApiKeyResponse
impl Debug for ApiKeyResponse
source§impl Default for ApiKeyResponse
impl Default for ApiKeyResponse
source§fn default() -> ApiKeyResponse
fn default() -> ApiKeyResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApiKeyResponse
impl<'de> Deserialize<'de> for ApiKeyResponse
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 ApiKeyResponse
impl PartialEq for ApiKeyResponse
source§fn eq(&self, other: &ApiKeyResponse) -> bool
fn eq(&self, other: &ApiKeyResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ApiKeyResponse
impl Serialize for ApiKeyResponse
impl StructuralPartialEq for ApiKeyResponse
Auto Trait Implementations§
impl RefUnwindSafe for ApiKeyResponse
impl Send for ApiKeyResponse
impl Sync for ApiKeyResponse
impl Unpin for ApiKeyResponse
impl UnwindSafe for ApiKeyResponse
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