#[non_exhaustive]pub enum InfoBarSeverity {
Informational,
Success,
Warning,
Error,
}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.
Trait Implementations§
Source§impl Clone for InfoBarSeverity
impl Clone for InfoBarSeverity
Source§fn clone(&self) -> InfoBarSeverity
fn clone(&self) -> InfoBarSeverity
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 InfoBarSeverity
Source§impl Debug for InfoBarSeverity
impl Debug for InfoBarSeverity
impl Eq for InfoBarSeverity
Source§impl PartialEq for InfoBarSeverity
impl PartialEq for InfoBarSeverity
impl StructuralPartialEq for InfoBarSeverity
Auto Trait Implementations§
impl Freeze for InfoBarSeverity
impl RefUnwindSafe for InfoBarSeverity
impl Send for InfoBarSeverity
impl Sync for InfoBarSeverity
impl Unpin for InfoBarSeverity
impl UnsafeUnpin for InfoBarSeverity
impl UnwindSafe for InfoBarSeverity
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