pub enum AuthSession {
Online {
client: Arc<dyn IdProvider + Sync + Send>,
account_id: String,
id: Id,
token: Option<Box<UserToken>>,
cred_handler: AuthCredHandler,
shutdown_rx: Receiver<()>,
},
Offline {
client: Arc<dyn IdProvider + Sync + Send>,
token: Box<UserToken>,
cred_handler: AuthCredHandler,
},
System {
cred_handler: AuthCredHandler,
shadow: Arc<Shadow>,
},
Success,
Denied,
}
Variants§
Online
Fields
§
client: Arc<dyn IdProvider + Sync + Send>
§
cred_handler: AuthCredHandler
§
shutdown_rx: Receiver<()>
Some authentication operations may need to spawn background tasks. These tasks need to know when to stop as the caller has disconnected. This receiver allows that, so that tasks which .resubscribe() to this channel can then select! on it and be notified when they need to stop.
Offline
System
Success
Denied
Auto Trait Implementations§
impl Freeze for AuthSession
impl !RefUnwindSafe for AuthSession
impl Send for AuthSession
impl Sync for AuthSession
impl Unpin for AuthSession
impl !UnwindSafe for AuthSession
Blanket Implementations§
§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
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