[][src]Trait unsegen::input::Writable

pub trait Writable {
    fn write(&mut self, c: char) -> OperationResult;
}

Something that can be written to in the sense of a text box, editor or text input.

All inputs that correspond to keystrokes with a corresponding char representation will be converted and passed to the Writable.

Required methods

fn write(&mut self, c: char) -> OperationResult

Loading content...

Implementors

impl Writable for LineEdit[src]

impl Writable for PromptLine[src]

Loading content...