pub enum BashLogLevel {
Debug,
Info,
Warn,
Error,
Fatal,
}Expand description
Log level for bash script logging.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BashLogLevel
impl Clone for BashLogLevel
Source§fn clone(&self) -> BashLogLevel
fn clone(&self) -> BashLogLevel
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 BashLogLevel
impl Debug for BashLogLevel
Source§impl Ord for BashLogLevel
impl Ord for BashLogLevel
Source§fn cmp(&self, other: &BashLogLevel) -> Ordering
fn cmp(&self, other: &BashLogLevel) -> 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 BashLogLevel
impl PartialEq for BashLogLevel
Source§impl PartialOrd for BashLogLevel
impl PartialOrd for BashLogLevel
impl Copy for BashLogLevel
impl Eq for BashLogLevel
impl StructuralPartialEq for BashLogLevel
Auto Trait Implementations§
impl Freeze for BashLogLevel
impl RefUnwindSafe for BashLogLevel
impl Send for BashLogLevel
impl Sync for BashLogLevel
impl Unpin for BashLogLevel
impl UnsafeUnpin for BashLogLevel
impl UnwindSafe for BashLogLevel
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