pub enum CliCommand {
Pause(PauseTarget),
Resume,
Trigger(BreakKindArg),
Skip(BreakKindArg),
Status,
ProfileList,
ProfileUse(String),
SettingsGet(String),
SettingsSet(String, String),
Quick {
profile: Option<String>,
colour: Option<String>,
},
}Variants§
Pause(PauseTarget)
Resume
Trigger(BreakKindArg)
Skip(BreakKindArg)
Status
ProfileList
ProfileUse(String)
SettingsGet(String)
SettingsSet(String, String)
Quick
Implementations§
Source§impl CliCommand
impl CliCommand
pub fn runs_locally(&self) -> bool
Trait Implementations§
Source§impl Clone for CliCommand
impl Clone for CliCommand
Source§fn clone(&self) -> CliCommand
fn clone(&self) -> CliCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CliCommand
impl Debug for CliCommand
Source§impl PartialEq for CliCommand
impl PartialEq for CliCommand
impl Eq for CliCommand
impl StructuralPartialEq for CliCommand
Auto Trait Implementations§
impl Freeze for CliCommand
impl RefUnwindSafe for CliCommand
impl Send for CliCommand
impl Sync for CliCommand
impl Unpin for CliCommand
impl UnsafeUnpin for CliCommand
impl UnwindSafe for CliCommand
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.