pub enum ApiKeySource {
None,
Unknown(String),
}Expand description
How the API key was sourced for the session.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ApiKeySource
impl Clone for ApiKeySource
Source§fn clone(&self) -> ApiKeySource
fn clone(&self) -> ApiKeySource
Returns a duplicate 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 ApiKeySource
impl Debug for ApiKeySource
Source§impl<'de> Deserialize<'de> for ApiKeySource
impl<'de> Deserialize<'de> for ApiKeySource
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ApiKeySource
impl Display for ApiKeySource
Source§impl From<&str> for ApiKeySource
impl From<&str> for ApiKeySource
Source§impl Hash for ApiKeySource
impl Hash for ApiKeySource
Source§impl PartialEq for ApiKeySource
impl PartialEq for ApiKeySource
Source§impl Serialize for ApiKeySource
impl Serialize for ApiKeySource
impl Eq for ApiKeySource
impl StructuralPartialEq for ApiKeySource
Auto Trait Implementations§
impl Freeze for ApiKeySource
impl RefUnwindSafe for ApiKeySource
impl Send for ApiKeySource
impl Sync for ApiKeySource
impl Unpin for ApiKeySource
impl UnsafeUnpin for ApiKeySource
impl UnwindSafe for ApiKeySource
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