pub enum DisktestQuiet {
Normal = 0,
Reduced = 1,
NoInfo = 2,
NoWarn = 3,
}
Expand description
Disktest console print verbosity.
Variants§
Normal = 0
Print all messages to the console.
Reduced = 1
Be less verbose when printing to the console.
NoInfo = 2
Only print warnings to the console.
NoWarn = 3
Do not print anything to the console.
Trait Implementations§
Source§impl Clone for DisktestQuiet
impl Clone for DisktestQuiet
Source§fn clone(&self) -> DisktestQuiet
fn clone(&self) -> DisktestQuiet
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 DisktestQuiet
impl Debug for DisktestQuiet
Source§impl Ord for DisktestQuiet
impl Ord for DisktestQuiet
Source§fn cmp(&self, other: &DisktestQuiet) -> Ordering
fn cmp(&self, other: &DisktestQuiet) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DisktestQuiet
impl PartialEq for DisktestQuiet
Source§impl PartialOrd for DisktestQuiet
impl PartialOrd for DisktestQuiet
impl Copy for DisktestQuiet
impl Eq for DisktestQuiet
impl StructuralPartialEq for DisktestQuiet
Auto Trait Implementations§
impl Freeze for DisktestQuiet
impl RefUnwindSafe for DisktestQuiet
impl Send for DisktestQuiet
impl Sync for DisktestQuiet
impl Unpin for DisktestQuiet
impl UnwindSafe for DisktestQuiet
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