pub enum ProviderAuth {
ApiKey {
key: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ProviderAuth
impl Clone for ProviderAuth
Source§fn clone(&self) -> ProviderAuth
fn clone(&self) -> ProviderAuth
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 ProviderAuth
impl Debug for ProviderAuth
Source§impl<'de> Deserialize<'de> for ProviderAuth
impl<'de> Deserialize<'de> for ProviderAuth
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 ProviderAuth
impl PartialEq for ProviderAuth
Source§fn eq(&self, other: &ProviderAuth) -> bool
fn eq(&self, other: &ProviderAuth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProviderAuth
impl Serialize for ProviderAuth
impl StructuralPartialEq for ProviderAuth
Auto Trait Implementations§
impl Freeze for ProviderAuth
impl RefUnwindSafe for ProviderAuth
impl Send for ProviderAuth
impl Sync for ProviderAuth
impl Unpin for ProviderAuth
impl UnsafeUnpin for ProviderAuth
impl UnwindSafe for ProviderAuth
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