#[non_exhaustive]pub enum LeanLoaderSeverity {
Info,
Warning,
Error,
}Expand description
Severity of one loader preflight finding.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Info
Informational finding that does not block loading.
Warning
Suspicious state that may still load.
Error
The capability should not be opened until this is fixed.
Trait Implementations§
Source§impl Clone for LeanLoaderSeverity
impl Clone for LeanLoaderSeverity
Source§fn clone(&self) -> LeanLoaderSeverity
fn clone(&self) -> LeanLoaderSeverity
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 moreSource§impl Debug for LeanLoaderSeverity
impl Debug for LeanLoaderSeverity
Source§impl Hash for LeanLoaderSeverity
impl Hash for LeanLoaderSeverity
Source§impl PartialEq for LeanLoaderSeverity
impl PartialEq for LeanLoaderSeverity
Source§fn eq(&self, other: &LeanLoaderSeverity) -> bool
fn eq(&self, other: &LeanLoaderSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LeanLoaderSeverity
impl Eq for LeanLoaderSeverity
impl StructuralPartialEq for LeanLoaderSeverity
Auto Trait Implementations§
impl Freeze for LeanLoaderSeverity
impl RefUnwindSafe for LeanLoaderSeverity
impl Send for LeanLoaderSeverity
impl Sync for LeanLoaderSeverity
impl Unpin for LeanLoaderSeverity
impl UnsafeUnpin for LeanLoaderSeverity
impl UnwindSafe for LeanLoaderSeverity
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