pub enum ExportData {
Report,
Tasks,
Summary,
All,
}Expand description
What gets exported.
Variants§
Report
The daily report: intervals, tasks, productivity.
Tasks
The date’s tasks.
Summary
The month’s totals and per-day hours.
All
Report + tasks + summary: one JSON file, or suffixed files for CSV/Excel.
Trait Implementations§
Source§impl Clone for ExportData
impl Clone for ExportData
Source§fn clone(&self) -> ExportData
fn clone(&self) -> ExportData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExportData
Source§impl Debug for ExportData
impl Debug for ExportData
Source§impl ValueEnum for ExportData
impl ValueEnum for ExportData
Auto Trait Implementations§
impl Freeze for ExportData
impl RefUnwindSafe for ExportData
impl Send for ExportData
impl Sync for ExportData
impl Unpin for ExportData
impl UnsafeUnpin for ExportData
impl UnwindSafe for ExportData
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