pub enum AuthLoginType {
Local(LocalLogin),
Remote(RemoteLogin),
Upgrade(UpgradeLogin),
Validation(ValidationLogin),
Delegation(DelegationLogin),
}Variants§
Local(LocalLogin)
Remote(RemoteLogin)
Upgrade(UpgradeLogin)
Validation(ValidationLogin)
Delegation(DelegationLogin)
Trait Implementations§
Source§impl Clone for AuthLoginType
impl Clone for AuthLoginType
Source§fn clone(&self) -> AuthLoginType
fn clone(&self) -> AuthLoginType
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 AuthLoginType
impl Debug for AuthLoginType
Source§impl<'de> Deserialize<'de> for AuthLoginType
impl<'de> Deserialize<'de> for AuthLoginType
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 Display for AuthLoginType
impl Display for AuthLoginType
Source§impl PartialEq for AuthLoginType
impl PartialEq for AuthLoginType
Source§impl Serialize for AuthLoginType
impl Serialize for AuthLoginType
impl StructuralPartialEq for AuthLoginType
Auto Trait Implementations§
impl Freeze for AuthLoginType
impl RefUnwindSafe for AuthLoginType
impl Send for AuthLoginType
impl Sync for AuthLoginType
impl Unpin for AuthLoginType
impl UnwindSafe for AuthLoginType
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