mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
16 lines
232 B
Rust
16 lines
232 B
Rust
#[derive(Clone, PartialEq, Debug, Copy)]
|
|
pub enum Action {
|
|
Report,
|
|
Filter,
|
|
Add,
|
|
Annotate,
|
|
Subprocess,
|
|
Log,
|
|
Modify,
|
|
HelpPopup,
|
|
ContextMenu,
|
|
Jump,
|
|
DeletePrompt,
|
|
DonePrompt,
|
|
Error,
|
|
}
|