recipes/common/src/toast.rs

10 lines
121 B
Rust

use strum::FromRepr;
#[derive(FromRepr)]
pub enum Level {
Success,
Error,
Info,
Warning,
Unknown,
}