pub struct EasyTerm {}
Implementations§
Source§impl EasyTerm
impl EasyTerm
pub fn clear_screen()
pub fn set_cursor_invisible()
pub fn set_cursor_top_left()
pub fn set_cursor_pos<N: Num + Display>(x: N, y: N)
pub fn move_cursor_up()
pub fn move_cursor_down()
pub fn move_cursor_left()
pub fn move_cursor_right()
pub fn move_cursor_up_by<N: Num + Display>(n: N)
pub fn move_cursor_down_by<N: Num + Display>(n: N)
pub fn move_cursor_left_by<N: Num + Display>(n: N)
pub fn move_cursor_right_by<N: Num + Display>(n: N)
pub fn move_cursor_by<N>(x: N, y: N)
pub fn print_at<N: Num + Display, T: Display>(x: N, y: N, s: T)
Auto Trait Implementations§
impl Freeze for EasyTerm
impl RefUnwindSafe for EasyTerm
impl Send for EasyTerm
impl Sync for EasyTerm
impl Unpin for EasyTerm
impl UnwindSafe for EasyTerm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more