pub enum VerboseAction {
On,
Off,
Toggle,
Unknown(String),
}Expand description
The /verbose argument.
Variants§
Trait Implementations§
Source§impl Clone for VerboseAction
impl Clone for VerboseAction
Source§fn clone(&self) -> VerboseAction
fn clone(&self) -> VerboseAction
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 VerboseAction
impl Debug for VerboseAction
Source§impl PartialEq for VerboseAction
impl PartialEq for VerboseAction
impl Eq for VerboseAction
impl StructuralPartialEq for VerboseAction
Auto Trait Implementations§
impl Freeze for VerboseAction
impl RefUnwindSafe for VerboseAction
impl Send for VerboseAction
impl Sync for VerboseAction
impl Unpin for VerboseAction
impl UnsafeUnpin for VerboseAction
impl UnwindSafe for VerboseAction
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