pub enum PatternSeverity {
Info,
Warning,
Error,
}Expand description
Pattern validation severity levels
Variants§
Info
Informational message
Warning
Warning about potentially problematic pattern
Error
Error that prevents pattern from being added
Trait Implementations§
Source§impl Clone for PatternSeverity
impl Clone for PatternSeverity
Source§fn clone(&self) -> PatternSeverity
fn clone(&self) -> PatternSeverity
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 PatternSeverity
impl Debug for PatternSeverity
Source§impl PartialEq for PatternSeverity
impl PartialEq for PatternSeverity
impl Eq for PatternSeverity
impl StructuralPartialEq for PatternSeverity
Auto Trait Implementations§
impl Freeze for PatternSeverity
impl RefUnwindSafe for PatternSeverity
impl Send for PatternSeverity
impl Sync for PatternSeverity
impl Unpin for PatternSeverity
impl UnwindSafe for PatternSeverity
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