kimun-notes 0.11.1

A terminal-based notes application
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, PartialEq, Eq)]
pub enum EventState {
    Consumed,
    NotConsumed,
}

impl EventState {
    pub fn is_consumed(&self) -> bool {
        *self == Self::Consumed
    }
}