pub enum ClientStage {
NotRegistered,
Registered(RegisteredClient),
}Variants§
NotRegistered
Registered(RegisteredClient)
Trait Implementations§
Source§impl Clone for ClientStage
impl Clone for ClientStage
Source§fn clone(&self) -> ClientStage
fn clone(&self) -> ClientStage
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 ClientStage
impl Debug for ClientStage
Source§impl PartialEq for ClientStage
impl PartialEq for ClientStage
impl StructuralPartialEq for ClientStage
Auto Trait Implementations§
impl Freeze for ClientStage
impl RefUnwindSafe for ClientStage
impl Send for ClientStage
impl Sync for ClientStage
impl Unpin for ClientStage
impl UnwindSafe for ClientStage
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