Enum btui::linux::console::CursorControl[][src]

pub enum CursorControl {
    Left(usize),
    Right(usize),
    Col(usize),
    Up(usize),
    Down(usize),
    Pos(usizeusize),
}
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Expand description

enum for cursor control

Variants

Left(usize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor left specified amount of columns

Tuple Fields of Left

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Right(usize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor right specified amount of columns

Tuple Fields of Right

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Col(usize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor to specified column

Tuple Fields of Col

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Up(usize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor specified amount of rows up

Tuple Fields of Up

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Down(usize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor specified amount of rows down

Tuple Fields of Down

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Pos(usizeusize)
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

move cursor to position(col, row)

Tuple Fields of Pos

0: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

1: usize
👎 Deprecated since 0.6.7:

all functionality of console is now in a Terminal struct

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.