Enum bear_lib_terminal::terminal::config::InputFilter [] [src]

pub enum InputFilter {
    Event {
        name: InputFilterEvent,
        both: bool,
    },
    Group {
        group: InputFilterGroup,
        both: bool,
    },
    Alnum {
        keys: String,
        both: bool,
    },
}

One input filter element.

boths are equivalent in effect to +s -- let through both keypresses and keyreleases.

Variants

Fields of Event

Fields of Group

Fields of Alnum

Trait Implementations

impl Clone for InputFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InputFilter
[src]

Formats the value using the given formatter.

impl Eq for InputFilter
[src]

impl PartialEq for InputFilter
[src]

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

This method tests for !=.

impl Hash for InputFilter
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more