Enum i3nator::types::ExecType [] [src]

pub enum ExecType {
    Text,
    TextNoReturn,
    Keys,
}

Defines how the commands in Exec should be interpreted.

Variants

Interpret the commands given as separate text-lines, inputting them in order with a Return after each.

Interpret the commands given as text, but do not input a Return after each element.

Interpret the commands given as key presses.

This does not input any Returns.

Trait Implementations

impl Debug for ExecType
[src]

Formats the value using the given formatter.

impl Clone for ExecType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ExecType
[src]

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

This method tests for !=.

impl Eq for ExecType
[src]