#[non_exhaustive]pub enum Level {
Error,
Warning,
Note,
Help,
}๐ฌThis is a nightly-only experimental API. (
proc_macro_diagnostic #54140)Expand description
An enum representing a diagnostic level.
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.
Error
๐ฌThis is a nightly-only experimental API. (
proc_macro_diagnostic #54140)An error.
Warning
๐ฌThis is a nightly-only experimental API. (
proc_macro_diagnostic #54140)A warning.
Note
๐ฌThis is a nightly-only experimental API. (
proc_macro_diagnostic #54140)A note.
Help
๐ฌThis is a nightly-only experimental API. (
proc_macro_diagnostic #54140)A help message.
Trait Implementationsยง
Auto Trait Implementationsยง
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnsafeUnpin for Level
impl UnwindSafe for Level
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