#[repr(u8)]pub enum IssueSeverity {
Error = 1,
Warning = 2,
}Expand description
The severity level of the source code diagnostics.
Variants§
Error = 1
Hard errors. The analyzer is quite confident that these kinds of diagnostic issues would lead to runtime errors.
Warning = 2
These types of diagnostic issues are likely to lead to runtime problems. However, the analyzer is not confident enough to classify them as hard errors due to the dynamic nature of the script execution model.
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 Ord for IssueSeverity
impl Ord for IssueSeverity
Source§fn cmp(&self, other: &IssueSeverity) -> Ordering
fn cmp(&self, other: &IssueSeverity) -> Ordering
1.21.0 · 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 IssueSeverity
impl PartialEq for IssueSeverity
Source§impl PartialOrd for IssueSeverity
impl PartialOrd 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more