pub enum MultiSelectionCommand {
SelectUndo,
InsertCursorAbove,
InsertCursorBelow,
InsertCursorEndOfLine,
SelectCurrentLine,
SelectAllCurrent,
SelectNextCurrent,
SelectSkipCurrent,
SelectAll,
}
Variants§
SelectUndo
InsertCursorAbove
InsertCursorBelow
InsertCursorEndOfLine
SelectCurrentLine
SelectAllCurrent
SelectNextCurrent
SelectSkipCurrent
SelectAll
Trait Implementations§
Source§impl Clone for MultiSelectionCommand
impl Clone for MultiSelectionCommand
Source§fn clone(&self) -> MultiSelectionCommand
fn clone(&self) -> MultiSelectionCommand
Returns a copy 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 MultiSelectionCommand
impl Debug for MultiSelectionCommand
Source§impl Display for MultiSelectionCommand
impl Display for MultiSelectionCommand
Source§impl EnumMessage for MultiSelectionCommand
impl EnumMessage for MultiSelectionCommand
fn get_message(&self) -> Option<&'static str>
fn get_detailed_message(&self) -> Option<&'static str>
Source§fn get_documentation(&self) -> Option<&'static str>
fn get_documentation(&self) -> Option<&'static str>
Get the doc comment associated with a variant if it exists.
fn get_serializations(&self) -> &'static [&'static str]
Source§impl<'_derivative_strum> From<&'_derivative_strum MultiSelectionCommand> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum MultiSelectionCommand> for &'static str
Source§fn from(x: &'_derivative_strum MultiSelectionCommand) -> &'static str
fn from(x: &'_derivative_strum MultiSelectionCommand) -> &'static str
Converts to this type from the input type.
Source§impl From<MultiSelectionCommand> for &'static str
impl From<MultiSelectionCommand> for &'static str
Source§fn from(x: MultiSelectionCommand) -> &'static str
fn from(x: MultiSelectionCommand) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for MultiSelectionCommand
impl FromStr for MultiSelectionCommand
Source§impl IntoEnumIterator for MultiSelectionCommand
impl IntoEnumIterator for MultiSelectionCommand
Source§impl PartialEq for MultiSelectionCommand
impl PartialEq for MultiSelectionCommand
Source§impl TryFrom<&str> for MultiSelectionCommand
impl TryFrom<&str> for MultiSelectionCommand
impl Eq for MultiSelectionCommand
impl StructuralPartialEq for MultiSelectionCommand
Auto Trait Implementations§
impl Freeze for MultiSelectionCommand
impl RefUnwindSafe for MultiSelectionCommand
impl Send for MultiSelectionCommand
impl Sync for MultiSelectionCommand
impl Unpin for MultiSelectionCommand
impl UnwindSafe for MultiSelectionCommand
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