Enum datafusion_rustyline::Cmd[][src]

pub enum Cmd {
    Abort,
    AcceptLine,
    BeginningOfHistory,
    CapitalizeWord,
    ClearScreen,
    Complete,
    DowncaseWord,
    EndOfFile,
    EndOfHistory,
    ForwardSearchHistory,
    HistorySearchBackward,
    HistorySearchForward,
    Insert(RepeatCountString),
    Interrupt,
    Kill(Movement),
    Move(Movement),
    NextHistory,
    Noop,
    Overwrite(char),
    PreviousHistory,
    QuotedInsert,
    ReplaceChar(RepeatCountchar),
    Replace(MovementOption<String>),
    ReverseSearchHistory,
    SelfInsert(RepeatCountchar),
    Suspend,
    TransposeChars,
    TransposeWords(RepeatCount),
    Undo(RepeatCount),
    Unknown,
    UpcaseWord,
    ViYankTo(Movement),
    Yank(RepeatCountAnchor),
    YankPop,
}

Commands

Variants

abort

accept-line

beginning-of-history

capitalize-word

clear-screen

complete

downcase-word

vi-eof-maybe

end-of-history

forward-search-history

history-search-backward

history-search-forward

backward-delete-char, backward-kill-line, backward-kill-word delete-char, kill-line, kill-word, unix-line-discard, unix-word-rubout, vi-delete, vi-delete-to, vi-rubout

backward-char, backward-word, beginning-of-line, end-of-line, forward-char, forward-word, vi-char-search, vi-end-word, vi-next-word, vi-prev-word

next-history

vi-replace

previous-history

quoted-insert

vi-change-char

vi-change-to, vi-substitute

reverse-search-history

self-insert

transpose-chars

transpose-words

undo

upcase-word

vi-yank-to

yank, vi-put

yank-pop

Methods

impl Cmd
[src]

Trait Implementations

impl Debug for Cmd
[src]

Formats the value using the given formatter. Read more

impl Clone for Cmd
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Cmd
[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 Cmd

impl Sync for Cmd