pub enum QrLoginState {
WaitingForScan,
WaitingForConfirm,
Expired,
Succeeded {
credentials: Credentials,
},
}Variants§
Trait Implementations§
Source§impl Clone for QrLoginState
impl Clone for QrLoginState
Source§fn clone(&self) -> QrLoginState
fn clone(&self) -> QrLoginState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QrLoginState
impl Debug for QrLoginState
impl Eq for QrLoginState
Source§impl PartialEq for QrLoginState
impl PartialEq for QrLoginState
Source§fn eq(&self, other: &QrLoginState) -> bool
fn eq(&self, other: &QrLoginState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QrLoginState
Auto Trait Implementations§
impl Freeze for QrLoginState
impl RefUnwindSafe for QrLoginState
impl Send for QrLoginState
impl Sync for QrLoginState
impl Unpin for QrLoginState
impl UnsafeUnpin for QrLoginState
impl UnwindSafe for QrLoginState
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