#[non_exhaustive]pub enum ConfirmationAction {
GuardToken(SteamGuardToken, GuardTokenType),
None,
Abort,
}Expand description
The action to perform to confirm the login
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GuardToken(SteamGuardToken, GuardTokenType)
A totp token to send to the server
None
No action required
Abort
Login has been canceled by the user
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConfirmationAction
impl RefUnwindSafe for ConfirmationAction
impl Send for ConfirmationAction
impl Sync for ConfirmationAction
impl Unpin for ConfirmationAction
impl UnwindSafe for ConfirmationAction
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