Enum datafusion_rustyline::Movement[][src]

pub enum Movement {
    WholeLine,
    BeginningOfLine,
    EndOfLine,
    BackwardWord(RepeatCountWord),
    ForwardWord(RepeatCountAtWord),
    ViCharSearch(RepeatCountCharSearch),
    ViFirstPrint,
    BackwardChar(RepeatCount),
    ForwardChar(RepeatCount),
}

Where to move

Variants

beginning-of-line

end-of-line

backward-word, vi-prev-word

forward-word, vi-end-word, vi-next-word

vi-char-search

vi-first-print

backward-char

forward-char

Trait Implementations

impl Debug for Movement
[src]

Formats the value using the given formatter. Read more

impl Clone for Movement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Movement
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Movement

impl Sync for Movement