#[repr(u8)]pub enum FedAuthLibrary {
Adal = 1,
SecurityToken = 2,
Msal = 3,
}Expand description
FEDAUTH library options for Login7.
These values indicate to the server which token library the client uses.
Variants§
Adal = 1
ADAL (Azure Active Directory Authentication Library) - legacy.
SecurityToken = 2
Security token (raw JWT).
Msal = 3
MSAL (Microsoft Authentication Library) - current.
Implementations§
Trait Implementations§
Source§impl Clone for FedAuthLibrary
impl Clone for FedAuthLibrary
Source§fn clone(&self) -> FedAuthLibrary
fn clone(&self) -> FedAuthLibrary
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 FedAuthLibrary
impl Debug for FedAuthLibrary
Source§impl PartialEq for FedAuthLibrary
impl PartialEq for FedAuthLibrary
impl Copy for FedAuthLibrary
impl Eq for FedAuthLibrary
impl StructuralPartialEq for FedAuthLibrary
Auto Trait Implementations§
impl Freeze for FedAuthLibrary
impl RefUnwindSafe for FedAuthLibrary
impl Send for FedAuthLibrary
impl Sync for FedAuthLibrary
impl Unpin for FedAuthLibrary
impl UnwindSafe for FedAuthLibrary
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