Trait input::TextEvent [] [src]

pub trait TextEvent: Sized {
    fn from_text(text: &str, old_event: &Self) -> Option<Self>;
fn text<U, F>(&self, f: F) -> Option<U>
    where
        F: FnMut(&str) -> U
; fn text_args(&self) -> Option<String> { ... } }

When receiving text from user, such as typing a character

Required Methods

Creates a text event.

Calls closure if this is a text event.

Provided Methods

Returns text arguments.

Implementors