pub struct VerifyApiKeyResponse {
pub valid: bool,
pub error: Option<VerifyApiKeyErrorBody>,
pub key: Option<ApiKeyPublicRecord>,
}Fields§
§valid: bool§error: Option<VerifyApiKeyErrorBody>§key: Option<ApiKeyPublicRecord>Trait Implementations§
Source§impl Clone for VerifyApiKeyResponse
impl Clone for VerifyApiKeyResponse
Source§fn clone(&self) -> VerifyApiKeyResponse
fn clone(&self) -> VerifyApiKeyResponse
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 VerifyApiKeyResponse
impl Debug for VerifyApiKeyResponse
Auto Trait Implementations§
impl Freeze for VerifyApiKeyResponse
impl RefUnwindSafe for VerifyApiKeyResponse
impl Send for VerifyApiKeyResponse
impl Sync for VerifyApiKeyResponse
impl Unpin for VerifyApiKeyResponse
impl UnsafeUnpin for VerifyApiKeyResponse
impl UnwindSafe for VerifyApiKeyResponse
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