pub enum ValidationSeverity {
Info,
Warning,
Error,
Critical,
}Expand description
Validation severity levels
Variants§
Info
Informational message
Warning
Warning that doesn’t prevent script execution
Error
Error that may cause rendering issues
Critical
Critical error that prevents script execution
Trait Implementations§
Source§impl Clone for ValidationSeverity
impl Clone for ValidationSeverity
Source§fn clone(&self) -> ValidationSeverity
fn clone(&self) -> ValidationSeverity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ValidationSeverity
Source§impl Debug for ValidationSeverity
impl Debug for ValidationSeverity
Source§impl Default for ValidationSeverity
impl Default for ValidationSeverity
impl Eq for ValidationSeverity
Source§impl Ord for ValidationSeverity
impl Ord for ValidationSeverity
Source§fn cmp(&self, other: &ValidationSeverity) -> Ordering
fn cmp(&self, other: &ValidationSeverity) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ValidationSeverity
impl PartialEq for ValidationSeverity
Source§fn eq(&self, other: &ValidationSeverity) -> bool
fn eq(&self, other: &ValidationSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ValidationSeverity
impl PartialOrd for ValidationSeverity
impl StructuralPartialEq for ValidationSeverity
Auto Trait Implementations§
impl Freeze for ValidationSeverity
impl RefUnwindSafe for ValidationSeverity
impl Send for ValidationSeverity
impl Sync for ValidationSeverity
impl Unpin for ValidationSeverity
impl UnsafeUnpin for ValidationSeverity
impl UnwindSafe for ValidationSeverity
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