pub enum Motion {
Show 30 variants
Around,
Down,
End,
GotoEof,
GotoLine(usize),
Home,
Inside,
Left,
LeftInLine,
Line,
NextChar(char),
NextCharTill(char),
NextSearch,
NextWordEnd(Word),
NextWordStart(Word),
PageDown,
PageUp,
PreviousChar(char),
PreviousCharTill(char),
PreviousSearch,
PreviousWordEnd(Word),
PreviousWordStart(Word),
Right,
RightInLine,
ScreenHigh,
ScreenLow,
ScreenMiddle,
Selection,
SoftHome,
Up,
}Variants§
Around
Down
End
GotoEof
GotoLine(usize)
Home
Inside
Left
LeftInLine
Line
NextChar(char)
NextCharTill(char)
NextSearch
NextWordEnd(Word)
NextWordStart(Word)
PageDown
PageUp
PreviousChar(char)
PreviousCharTill(char)
PreviousSearch
PreviousWordEnd(Word)
PreviousWordStart(Word)
Right
RightInLine
ScreenHigh
ScreenLow
ScreenMiddle
Selection
SoftHome
Up
Implementations§
Trait Implementations§
impl Copy for Motion
impl Eq for Motion
impl StructuralPartialEq for Motion
Auto Trait Implementations§
impl Freeze for Motion
impl RefUnwindSafe for Motion
impl Send for Motion
impl Sync for Motion
impl Unpin for Motion
impl UnwindSafe for Motion
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