pub enum PatternValidationLevel {
None,
Warn,
Strict,
}Expand description
Pattern validation level
Variants§
None
Skip all validation
Warn
Show warnings and errors, but only fail on errors
Strict
Show all issues and fail on any issue
Trait Implementations§
Source§impl Clone for PatternValidationLevel
impl Clone for PatternValidationLevel
Source§fn clone(&self) -> PatternValidationLevel
fn clone(&self) -> PatternValidationLevel
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 PatternValidationLevel
impl Debug for PatternValidationLevel
Source§impl PartialEq for PatternValidationLevel
impl PartialEq for PatternValidationLevel
impl Eq for PatternValidationLevel
impl StructuralPartialEq for PatternValidationLevel
Auto Trait Implementations§
impl Freeze for PatternValidationLevel
impl RefUnwindSafe for PatternValidationLevel
impl Send for PatternValidationLevel
impl Sync for PatternValidationLevel
impl Unpin for PatternValidationLevel
impl UnwindSafe for PatternValidationLevel
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