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
fn from_text(text: &str, old_event: &Self) -> Option<Self>
Creates a text event.
fn text<U, F>(&self, f: F) -> Option<U> where
    F: FnMut(&str) -> U, 
F: FnMut(&str) -> U,
Calls closure if this is a text event.