pub enum IssueSeverity {
Info,
Warning,
Error,
Critical,
}Expand description
Parse issue severity levels for partial recovery
Determines how serious an issue is and whether it should block processing. Lower severity issues can often be ignored or worked around.
Variants§
Info
Information that may be useful but doesn’t affect functionality
Warning
Warning about potential problems or non-standard usage
Error
Error that was recovered from but may affect rendering
Critical
Critical error that will likely cause rendering problems
Trait Implementations§
Source§impl Clone for IssueSeverity
impl Clone for IssueSeverity
Source§fn clone(&self) -> IssueSeverity
fn clone(&self) -> IssueSeverity
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 IssueSeverity
impl Debug for IssueSeverity
Source§impl Display for IssueSeverity
impl Display for IssueSeverity
Source§impl Hash for IssueSeverity
impl Hash for IssueSeverity
Source§impl PartialEq for IssueSeverity
impl PartialEq for IssueSeverity
impl Copy for IssueSeverity
impl Eq for IssueSeverity
impl StructuralPartialEq for IssueSeverity
Auto Trait Implementations§
impl Freeze for IssueSeverity
impl RefUnwindSafe for IssueSeverity
impl Send for IssueSeverity
impl Sync for IssueSeverity
impl Unpin for IssueSeverity
impl UnwindSafe for IssueSeverity
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