pub enum AuthSource {
ApiKey {
origin: ApiKeyOrigin,
},
Plugin {
method: AuthMethod,
},
None,
}Variants§
Trait Implementations§
Source§impl Clone for AuthSource
impl Clone for AuthSource
Source§fn clone(&self) -> AuthSource
fn clone(&self) -> AuthSource
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 AuthSource
impl Debug for AuthSource
Source§impl PartialEq for AuthSource
impl PartialEq for AuthSource
impl Eq for AuthSource
impl StructuralPartialEq for AuthSource
Auto Trait Implementations§
impl Freeze for AuthSource
impl RefUnwindSafe for AuthSource
impl Send for AuthSource
impl Sync for AuthSource
impl Unpin for AuthSource
impl UnwindSafe for AuthSource
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