pub enum Commands {
Show 15 variants
Tui,
Start {
project: String,
description: Option<String>,
tag: Vec<String>,
no_billable: bool,
},
Stop {
description: Option<String>,
},
Status,
Cancel,
Resume,
Add {
project: String,
start: String,
end: String,
description: Option<String>,
tag: Vec<String>,
},
Log {
today: bool,
week: bool,
month: bool,
project: Option<String>,
client: Option<String>,
},
Report {
period: String,
format: String,
output: Option<String>,
},
Projects {
action: ProjectAction,
},
Clients {
action: ClientAction,
},
Tags {
action: TagAction,
},
Rates {
action: RateAction,
},
Invoice {
action: InvoiceAction,
},
Config {
action: ConfigAction,
},
}Variants§
Tui
Launch interactive TUI
Start
Start a timer
Fields
Stop
Stop the active timer
Status
Show current timer status
Cancel
Cancel the active timer (discard)
Resume
Resume the last stopped timer
Add
Add a completed time entry
Fields
Log
List recent time entries
Fields
Report
Generate reports
Fields
Projects
Manage projects
Fields
§
action: ProjectActionClients
Manage clients
Fields
§
action: ClientActionTags
Manage tags
Rates
Manage billing rates
Fields
§
action: RateActionInvoice
Generate or list invoices
Fields
§
action: InvoiceActionConfig
Manage configuration
Fields
§
action: ConfigActionTrait Implementations§
Source§impl FromArgMatches for Commands
impl FromArgMatches for Commands
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for Commands
impl Subcommand for Commands
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for Commands
impl RefUnwindSafe for Commands
impl Send for Commands
impl Sync for Commands
impl Unpin for Commands
impl UnsafeUnpin for Commands
impl UnwindSafe for Commands
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more