pub enum Action {
Show 25 variants
Quit,
SetMode(Mode),
AutoCompleteTab,
AutoCompleteBack,
NewCommandString,
SubmitCommand,
AcceptCompletion,
NavUp,
NavDown,
NavLeft,
NavRight,
NavTabNext,
NavTabPrev,
NavScroll(i16),
NavHome,
NavEnd,
TogglePlot,
ClosePlot,
ToggleFft,
ToggleFooter,
ToggleRoutes,
AdjustWindow(f64),
AdjustPlotWidth(i16),
AdjustPrecision(i8),
HistoryNavigate(HistDir),
}Variants§
Quit
SetMode(Mode)
AutoCompleteTab
AutoCompleteBack
NewCommandString
SubmitCommand
AcceptCompletion
TogglePlot
ClosePlot
ToggleFft
ToggleRoutes
AdjustWindow(f64)
AdjustPlotWidth(i16)
AdjustPrecision(i8)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more