pub enum Verbosity {
Silent = 0,
ParameterMean = 1,
ParameterCovariance = 2,
IndividualSteps = 3,
}Expand description
Log verbosity.
Default is Self::Silent.
Variants§
Silent = 0
No logging.
ParameterMean = 1
Logs parameter mean.
ParameterCovariance = 2
Logs covariance matrix among Self::ParameterMean.
IndividualSteps = 3
Logs individual steps among Self::ParameterMean and Self::ParameterCovariance.
Trait Implementations§
impl Copy for Verbosity
Auto Trait Implementations§
impl Freeze for Verbosity
impl RefUnwindSafe for Verbosity
impl Send for Verbosity
impl Sync for Verbosity
impl Unpin for Verbosity
impl UnwindSafe for Verbosity
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