pub enum ModeTarget {
Conversation,
Positions,
Decisions,
Heat,
Cockpit,
}Expand description
A mode switch the dispatcher can emit. Mirrors zero-tui::Mode
but lives here so zero-commands does not have to depend on
the TUI crate.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ModeTarget
impl Clone for ModeTarget
Source§fn clone(&self) -> ModeTarget
fn clone(&self) -> ModeTarget
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 ModeTarget
impl Debug for ModeTarget
Source§impl PartialEq for ModeTarget
impl PartialEq for ModeTarget
impl Copy for ModeTarget
impl Eq for ModeTarget
impl StructuralPartialEq for ModeTarget
Auto Trait Implementations§
impl Freeze for ModeTarget
impl RefUnwindSafe for ModeTarget
impl Send for ModeTarget
impl Sync for ModeTarget
impl Unpin for ModeTarget
impl UnsafeUnpin for ModeTarget
impl UnwindSafe for ModeTarget
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