pub struct VerifyApiKeyResult {
pub valid: bool,
}Expand description
Response from API-key verification calls.
Fields§
§valid: boolWhether the key is valid.
Trait Implementations§
Source§impl Clone for VerifyApiKeyResult
impl Clone for VerifyApiKeyResult
Source§fn clone(&self) -> VerifyApiKeyResult
fn clone(&self) -> VerifyApiKeyResult
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 VerifyApiKeyResult
impl Debug for VerifyApiKeyResult
Source§impl Default for VerifyApiKeyResult
impl Default for VerifyApiKeyResult
Source§fn default() -> VerifyApiKeyResult
fn default() -> VerifyApiKeyResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerifyApiKeyResult
impl<'de> Deserialize<'de> for VerifyApiKeyResult
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
Auto Trait Implementations§
impl Freeze for VerifyApiKeyResult
impl RefUnwindSafe for VerifyApiKeyResult
impl Send for VerifyApiKeyResult
impl Sync for VerifyApiKeyResult
impl Unpin for VerifyApiKeyResult
impl UnwindSafe for VerifyApiKeyResult
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