| 4 | |
| 5 | #[derive(Clone, Copy, Debug, Enum, PartialEq, Eq)] |
| 6 | pub enum AlertType { |
| 7 | Success, |
| 8 | Warn, |
| 9 | Error, |
| 10 | } |
| 11 | |
| 12 | impl std::fmt::Display for AlertType { |
| 13 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected