pub enum OutputLevel {
Debug,
Info,
Success,
Warning,
Error,
}Expand description
Output classification for test assertions.
Variants§
Debug
Debug output.
Info
Informational output.
Success
Success output.
Warning
Warning output.
Error
Error output.
Trait Implementations§
Source§impl Clone for OutputLevel
impl Clone for OutputLevel
Source§fn clone(&self) -> OutputLevel
fn clone(&self) -> OutputLevel
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 OutputLevel
impl Debug for OutputLevel
Source§impl PartialEq for OutputLevel
impl PartialEq for OutputLevel
impl Copy for OutputLevel
impl Eq for OutputLevel
impl StructuralPartialEq for OutputLevel
Auto Trait Implementations§
impl Freeze for OutputLevel
impl RefUnwindSafe for OutputLevel
impl Send for OutputLevel
impl Sync for OutputLevel
impl Unpin for OutputLevel
impl UnsafeUnpin for OutputLevel
impl UnwindSafe for OutputLevel
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