Re-exports§
pub use crate::clockin::ClockAction;
pub use crate::clockin::Clockin;
pub use crate::clockin::InData;
pub use crate::clockin::LineClockAction;
pub use crate::s_time::STime;
pub use err::LineErr;
pub use err::TokErr;
Modules§
Macros§
- clap_
app - Build
App
,Arg
s,SubCommand
s andGroup
s with Usage-string like input but without the associated parsing runtime cost. - crate_
version - Allows you to pull the version from your Cargo.toml at compile time as
MAJOR.MINOR.PATCH_PKGVERSION_PRE
Structs§
- ArgMatches
- Used to get information about the arguments that were supplied to the program at runtime by
the user. New instances of this struct are obtained by using the
App::get_matches
family of methods. - Values
- An iterator for getting multiple values out of an argument via the
ArgMatches::values_of
method.