pub enum AuthCliCommand {
Status(AuthStatusCliOptions),
Save(AuthProfileCliOptions),
List(AuthProfileCliOptions),
Select(AuthSelectCliOptions),
Remove(AuthRemoveCliOptions),
}Variants§
Status(AuthStatusCliOptions)
Save(AuthProfileCliOptions)
List(AuthProfileCliOptions)
Select(AuthSelectCliOptions)
Remove(AuthRemoveCliOptions)
Trait Implementations§
Source§impl Clone for AuthCliCommand
impl Clone for AuthCliCommand
Source§fn clone(&self) -> AuthCliCommand
fn clone(&self) -> AuthCliCommand
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 AuthCliCommand
impl Debug for AuthCliCommand
Source§impl PartialEq for AuthCliCommand
impl PartialEq for AuthCliCommand
Source§fn eq(&self, other: &AuthCliCommand) -> bool
fn eq(&self, other: &AuthCliCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthCliCommand
impl StructuralPartialEq for AuthCliCommand
Auto Trait Implementations§
impl Freeze for AuthCliCommand
impl RefUnwindSafe for AuthCliCommand
impl Send for AuthCliCommand
impl Sync for AuthCliCommand
impl Unpin for AuthCliCommand
impl UnsafeUnpin for AuthCliCommand
impl UnwindSafe for AuthCliCommand
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