summaryrefslogtreecommitdiffstats
path: root/src/priority.rs
blob: 20fd673a40e19c932e257d9f99314bced16ec651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//

//! Module containing TaskPriority types and trait impls

/// Enum for the priorities taskwarrior supports.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum TaskPriority {
    /// Low prio for a Task
    Low,

    /// Medium prio for a Task
    Medium,

    /// High prio for a Task
    High,
}