pub enum MotionModeCommand {
MotionModeDelete,
MotionModeIndent,
MotionModeOutdent,
MotionModeYank,
}
Variants§
Trait Implementations§
Source§impl Clone for MotionModeCommand
impl Clone for MotionModeCommand
Source§fn clone(&self) -> MotionModeCommand
fn clone(&self) -> MotionModeCommand
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 MotionModeCommand
impl Debug for MotionModeCommand
Source§impl Display for MotionModeCommand
impl Display for MotionModeCommand
Source§impl EnumMessage for MotionModeCommand
impl EnumMessage for MotionModeCommand
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 MotionModeCommand> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum MotionModeCommand> for &'static str
Source§fn from(x: &'_derivative_strum MotionModeCommand) -> &'static str
fn from(x: &'_derivative_strum MotionModeCommand) -> &'static str
Converts to this type from the input type.
Source§impl From<MotionModeCommand> for &'static str
impl From<MotionModeCommand> for &'static str
Source§fn from(x: MotionModeCommand) -> &'static str
fn from(x: MotionModeCommand) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for MotionModeCommand
impl FromStr for MotionModeCommand
Source§impl IntoEnumIterator for MotionModeCommand
impl IntoEnumIterator for MotionModeCommand
type Iterator = MotionModeCommandIter
fn iter() -> MotionModeCommandIter ⓘ
Source§impl PartialEq for MotionModeCommand
impl PartialEq for MotionModeCommand
Source§impl TryFrom<&str> for MotionModeCommand
impl TryFrom<&str> for MotionModeCommand
impl Eq for MotionModeCommand
impl StructuralPartialEq for MotionModeCommand
Auto Trait Implementations§
impl Freeze for MotionModeCommand
impl RefUnwindSafe for MotionModeCommand
impl Send for MotionModeCommand
impl Sync for MotionModeCommand
impl Unpin for MotionModeCommand
impl UnwindSafe for MotionModeCommand
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