Enum winit_input_helper::TextChar[][src]

pub enum TextChar {
    Char(char),
    Back,
}

TODO: Either:

  • remove this struct and just use backspace character instead
  • move keypresses like Home, End, Left, Right, Up, Down, Return to this enum (advantage of using this struct is it retains sub-frame keypress ordering)

Variants

Trait Implementations

impl Clone for TextChar
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for TextChar

impl Sync for TextChar