summaryrefslogtreecommitdiffstats
path: root/src/notification.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/notification.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/notification.rs b/src/notification.rs
new file mode 100644
index 0000000..2283761
--- /dev/null
+++ b/src/notification.rs
@@ -0,0 +1,20 @@
+pub enum Kind {
+ Info,
+ Warning,
+ Error,
+}
+
+impl std::fmt::Display for Kind {
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ match self {
+ Kind::Info => f.write_str("info"),
+ Kind::Warning => f.write_str("warning"),
+ Kind::Error => f.write_str("error"),
+ }
+ }
+}
+
+pub struct Notification {
+ pub kind: Kind,
+ pub message: String,
+}