pub enum FedAuthWorkflow {
Interactive,
NonInteractive,
ManagedIdentity,
ServicePrincipal,
}Expand description
FEDAUTH workflow types.
Variants§
Interactive
Interactive authentication with user sign-in.
NonInteractive
Non-interactive with pre-acquired token.
ManagedIdentity
Managed identity (system or user-assigned).
ServicePrincipal
Service principal with secret.
Trait Implementations§
Source§impl Clone for FedAuthWorkflow
impl Clone for FedAuthWorkflow
Source§fn clone(&self) -> FedAuthWorkflow
fn clone(&self) -> FedAuthWorkflow
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 FedAuthWorkflow
impl Debug for FedAuthWorkflow
Source§impl PartialEq for FedAuthWorkflow
impl PartialEq for FedAuthWorkflow
impl Copy for FedAuthWorkflow
impl Eq for FedAuthWorkflow
impl StructuralPartialEq for FedAuthWorkflow
Auto Trait Implementations§
impl Freeze for FedAuthWorkflow
impl RefUnwindSafe for FedAuthWorkflow
impl Send for FedAuthWorkflow
impl Sync for FedAuthWorkflow
impl Unpin for FedAuthWorkflow
impl UnwindSafe for FedAuthWorkflow
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