Enum btui::linux::console::CursorControl [−][src]
pub enum CursorControl {
Left(usize),
Right(usize),
Col(usize),
Up(usize),
Down(usize),
Pos(usize, usize),
}
all functionality of console is now in a Terminal struct
Expand description
enum for cursor control
Variants
Left(usize)
all functionality of console is now in a Terminal struct
move cursor left specified amount of columns
Tuple Fields of Left
0: usize
all functionality of console is now in a Terminal struct
Right(usize)
all functionality of console is now in a Terminal struct
move cursor right specified amount of columns
Tuple Fields of Right
0: usize
all functionality of console is now in a Terminal struct
Col(usize)
all functionality of console is now in a Terminal struct
move cursor to specified column
Tuple Fields of Col
0: usize
all functionality of console is now in a Terminal struct
Up(usize)
all functionality of console is now in a Terminal struct
move cursor specified amount of rows up
Tuple Fields of Up
0: usize
all functionality of console is now in a Terminal struct
Down(usize)
all functionality of console is now in a Terminal struct
move cursor specified amount of rows down
Tuple Fields of Down
0: usize
all functionality of console is now in a Terminal struct
all functionality of console is now in a Terminal struct
move cursor to position(col, row)