pub enum Level {
Debug = 0,
Info = 1,
Success = 2,
Warning = 3,
Error = 4,
}
Expand description
The severity level of a FlashMessage
.
Levels can be used for filtering and rendering - for example:
- Only show flash messages at
info
level or above in a production environment, while retainingdebug
level messages for local development; - Use different colours, in the UI, to display messages (e.g. red for errors, orange for warnings, etc.).
Variants§
Debug = 0
Development-related messages. Often ignored in a production environment.
Info = 1
Informational messages for the user - e.g. “Your last login was two days ago”.
Success = 2
Positive feedback after an action was successful - e.g. “You logged in successfully!”.
Warning = 3
Notifying the user about an action that they must take imminently to prevent an error in the future.
Error = 4
An action was not successful - e.g. “The provided login credentials are invalid”.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Level
impl<'de> Deserialize<'de> for Level
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialOrd for Level
impl PartialOrd for Level
impl Copy for Level
impl Eq for Level
impl StructuralPartialEq for Level
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.