Enum ransid::Event [] [src]

pub enum Event<'a> {
    Char {
        x: usize,
        y: usize,
        c: char,
        bold: bool,
        underlined: bool,
        color: Color,
    },
    Input {
        data: &'a [u8],
    },
    Rect {
        x: usize,
        y: usize,
        w: usize,
        h: usize,
        color: Color,
    },
    ScreenBuffer {
        alternate: bool,
        clear: bool,
    },
    Scroll {
        rows: usize,
        color: Color,
    },
    Title {
        title: String,
    },
}

Variants

Fields of Char

Fields of Input

Fields of Rect

Fields of ScreenBuffer

Fields of Scroll

Fields of Title