pub enum CycleCliCommand {
Add {
time_parts: Vec<String>,
options: CycleCommandOptions,
},
List {
options: CycleCommandOptions,
},
Remove {
anchor_id: String,
options: CycleCommandOptions,
},
Current {
options: CycleCommandOptions,
},
History {
cycle_id: Option<String>,
options: CycleCommandOptions,
},
}Variants§
Add
List
Fields
§
options: CycleCommandOptionsRemove
Current
Fields
§
options: CycleCommandOptionsHistory
Trait Implementations§
Source§impl Clone for CycleCliCommand
impl Clone for CycleCliCommand
Source§fn clone(&self) -> CycleCliCommand
fn clone(&self) -> CycleCliCommand
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 moreSource§impl Debug for CycleCliCommand
impl Debug for CycleCliCommand
Source§impl PartialEq for CycleCliCommand
impl PartialEq for CycleCliCommand
Source§fn eq(&self, other: &CycleCliCommand) -> bool
fn eq(&self, other: &CycleCliCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CycleCliCommand
impl StructuralPartialEq for CycleCliCommand
Auto Trait Implementations§
impl Freeze for CycleCliCommand
impl RefUnwindSafe for CycleCliCommand
impl Send for CycleCliCommand
impl Sync for CycleCliCommand
impl Unpin for CycleCliCommand
impl UnsafeUnpin for CycleCliCommand
impl UnwindSafe for CycleCliCommand
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