pub enum ErrorSeverity {
Fatal,
Error,
Warning,
}
Expand description
Error severity levels
Variants§
Fatal
Fatal errors that prevent execution
Error
Errors that stop current operation
Warning
Warnings that don’t stop execution
Trait Implementations§
Source§impl Clone for ErrorSeverity
impl Clone for ErrorSeverity
Source§fn clone(&self) -> ErrorSeverity
fn clone(&self) -> ErrorSeverity
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 ErrorSeverity
impl Debug for ErrorSeverity
Source§impl Display for ErrorSeverity
impl Display for ErrorSeverity
Source§impl PartialEq for ErrorSeverity
impl PartialEq for ErrorSeverity
impl Copy for ErrorSeverity
impl Eq for ErrorSeverity
impl StructuralPartialEq for ErrorSeverity
Auto Trait Implementations§
impl Freeze for ErrorSeverity
impl RefUnwindSafe for ErrorSeverity
impl Send for ErrorSeverity
impl Sync for ErrorSeverity
impl Unpin for ErrorSeverity
impl UnwindSafe for ErrorSeverity
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