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