pub enum ClockAction {
AddTag(String),
ClearTags(Option<String>),
In(STime),
Out(STime),
InOut(STime, STime),
SetJob(String),
SetDate(usize, usize, Option<isize>),
SetNum(String, isize),
DefGroup(String, Vec<String>),
}
Variants§
AddTag(String)
ClearTags(Option<String>)
In(STime)
Out(STime)
InOut(STime, STime)
SetJob(String)
SetDate(usize, usize, Option<isize>)
SetNum(String, isize)
DefGroup(String, Vec<String>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClockAction
impl RefUnwindSafe for ClockAction
impl Send for ClockAction
impl Sync for ClockAction
impl Unpin for ClockAction
impl UnwindSafe for ClockAction
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