#[repr(usize)]pub enum VerbosityLevel {
Silent = 0,
Minimal = 1,
Informational = 2,
Results = 3,
Intermediate = 4,
}Expand description
Indicates the verbosity level of the program
Variants§
Silent = 0
Minimal = 1
No output except basic logging
Informational = 2
Outputs information about each operator that is executed
Results = 3
Output all results from operators into .npy files
Intermediate = 4
Output intermediate results from operators into .npy files (only supported by conv for now)
Implementations§
Trait Implementations§
Source§impl Clone for VerbosityLevel
impl Clone for VerbosityLevel
Source§fn clone(&self) -> VerbosityLevel
fn clone(&self) -> VerbosityLevel
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 VerbosityLevel
impl Debug for VerbosityLevel
Source§impl Ord for VerbosityLevel
impl Ord for VerbosityLevel
Source§fn cmp(&self, other: &VerbosityLevel) -> Ordering
fn cmp(&self, other: &VerbosityLevel) -> 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<VerbosityLevel> for usize
impl PartialEq<VerbosityLevel> for usize
Source§impl PartialEq<usize> for VerbosityLevel
impl PartialEq<usize> for VerbosityLevel
Source§impl PartialEq for VerbosityLevel
impl PartialEq for VerbosityLevel
Source§impl PartialOrd<VerbosityLevel> for usize
impl PartialOrd<VerbosityLevel> for usize
Source§impl PartialOrd<usize> for VerbosityLevel
impl PartialOrd<usize> for VerbosityLevel
Source§impl PartialOrd for VerbosityLevel
impl PartialOrd for VerbosityLevel
impl Copy for VerbosityLevel
impl Eq for VerbosityLevel
impl StructuralPartialEq for VerbosityLevel
Auto Trait Implementations§
impl Freeze for VerbosityLevel
impl RefUnwindSafe for VerbosityLevel
impl Send for VerbosityLevel
impl Sync for VerbosityLevel
impl Unpin for VerbosityLevel
impl UnwindSafe for VerbosityLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more