summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/status.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/status.rs b/src/status.rs
index b8ea068..8a97a6d 100644
--- a/src/status.rs
+++ b/src/status.rs
@@ -10,10 +10,19 @@ use serde::de::Visitor;
/// Enum for status taskwarrior supports.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum TaskStatus {
+ /// Pening status type
Pending,
+
+ /// Deleted status type
Deleted,
+
+ /// Completed status type
Completed,
+
+ /// Waiting status type
Waiting,
+
+ /// Recurring status type
Recurring
}