Struct termion::cursor::Goto [−][src]
Expand description
Goto some position ((1,1)-based).
Why one-based?
ANSI escapes are very poorly designed, and one of the many odd aspects is being one-based. This can be quite strange at first, but it is not that big of an obstruction once you get used to it.
Example
extern crate termion; fn main() { print!("{}{}Stuff", termion::clear::All, termion::cursor::Goto(5, 3)); }
Tuple Fields
0: u16
1: u16
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Goto
impl UnwindSafe for Goto
Blanket Implementations
Mutably borrows from an owned value. Read more