pub enum StrategyCommand {
Templates,
Start {
template: StrategyTemplate,
instrument: Instrument,
config: StrategyStartConfig,
},
List,
Show {
watch_id: u64,
},
Stop {
watch_id: u64,
},
History,
}Variants§
Trait Implementations§
Source§impl Clone for StrategyCommand
impl Clone for StrategyCommand
Source§fn clone(&self) -> StrategyCommand
fn clone(&self) -> StrategyCommand
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 StrategyCommand
impl Debug for StrategyCommand
Source§impl PartialEq for StrategyCommand
impl PartialEq for StrategyCommand
impl StructuralPartialEq for StrategyCommand
Auto Trait Implementations§
impl Freeze for StrategyCommand
impl RefUnwindSafe for StrategyCommand
impl Send for StrategyCommand
impl Sync for StrategyCommand
impl Unpin for StrategyCommand
impl UnsafeUnpin for StrategyCommand
impl UnwindSafe for StrategyCommand
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