Trait termion::cursor::DetectCursorPos[][src]

pub trait DetectCursorPos {
    fn cursor_pos(&mut self) -> Result<(u16, u16)>;
}
Expand description

Types that allow detection of the cursor position.

Required methods

Get the (1,1)-based cursor position from the terminal.

Implementors