Enum wee_rl::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,
    PreviousHistory,
    QuotedInsert,
    Replace(RepeatCountchar),
    ReverseSearchHistory,
    SelfInsert(RepeatCountchar),
    Suspend,
    TransposeChars,
    TransposeWords(RepeatCount),
    Unknown,
    UpcaseWord,
    ViYankTo(Movement),
    Yank(RepeatCountAnchor),
    YankPop,
}

Variants

Methods

impl Cmd
[src]

Trait Implementations

impl Debug for Cmd
[src]

[src]

Formats the value using the given formatter.

impl Clone for Cmd
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Cmd
[src]

[src]

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

[src]

This method tests for !=.