Enum reedline::Signal[][src]

pub enum Signal {
    Success(String),
    CtrlC,
    CtrlD,
    CtrlL,
}
Expand description

Valid ways how [Reedline::read_line()] can return

Variants

Success(String)

Entry succeeded with the provided content

Tuple Fields of Success

0: String
CtrlC

Entry was aborted with Ctrl+C

CtrlD

Abort with Ctrl+D signalling EOF or abort of a whole interactive session

CtrlL

Signal to clear the current screen. Buffer content remains untouched.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.