pub enum LoginPhase {
Pending,
Done {
account_id: String,
},
Failed {
error: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for LoginPhase
impl Clone for LoginPhase
Source§fn clone(&self) -> LoginPhase
fn clone(&self) -> LoginPhase
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 LoginPhase
impl Debug for LoginPhase
Source§impl PartialEq for LoginPhase
impl PartialEq for LoginPhase
impl StructuralPartialEq for LoginPhase
Auto Trait Implementations§
impl Freeze for LoginPhase
impl RefUnwindSafe for LoginPhase
impl Send for LoginPhase
impl Sync for LoginPhase
impl Unpin for LoginPhase
impl UnsafeUnpin for LoginPhase
impl UnwindSafe for LoginPhase
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