pub enum MolpackLogLevel {
Quiet,
Summary,
Progress,
Verbose,
}Expand description
Screen-log detail level for LAMMPS-style packer output.
Variants§
Quiet
Print nothing.
Summary
Print system setup, phase summaries, and final summary.
Progress
Print per-step thermo-style progress lines.
Verbose
Print the same progress lines plus extra diagnostic columns.
Implementations§
Source§impl MolpackLogLevel
impl MolpackLogLevel
pub const fn is_enabled(self) -> bool
Trait Implementations§
Source§impl Clone for MolpackLogLevel
impl Clone for MolpackLogLevel
Source§fn clone(&self) -> MolpackLogLevel
fn clone(&self) -> MolpackLogLevel
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 moreimpl Copy for MolpackLogLevel
Source§impl Debug for MolpackLogLevel
impl Debug for MolpackLogLevel
Source§impl Default for MolpackLogLevel
impl Default for MolpackLogLevel
Source§fn default() -> MolpackLogLevel
fn default() -> MolpackLogLevel
Returns the “default value” for a type. Read more
impl Eq for MolpackLogLevel
Source§impl Ord for MolpackLogLevel
impl Ord for MolpackLogLevel
Source§fn cmp(&self, other: &MolpackLogLevel) -> Ordering
fn cmp(&self, other: &MolpackLogLevel) -> Ordering
1.21.0 (const: unstable) · 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 MolpackLogLevel
impl PartialEq for MolpackLogLevel
Source§fn eq(&self, other: &MolpackLogLevel) -> bool
fn eq(&self, other: &MolpackLogLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MolpackLogLevel
impl PartialOrd for MolpackLogLevel
impl StructuralPartialEq for MolpackLogLevel
Auto Trait Implementations§
impl Freeze for MolpackLogLevel
impl RefUnwindSafe for MolpackLogLevel
impl Send for MolpackLogLevel
impl Sync for MolpackLogLevel
impl Unpin for MolpackLogLevel
impl UnsafeUnpin for MolpackLogLevel
impl UnwindSafe for MolpackLogLevel
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