Enum tty_interface::mode::CursorMode
source · [−]pub enum CursorMode {
Relative,
Absolute,
}Expand description
How the cursor should be moved around the terminal.
Variants
Relative
Jogs the cursor with up/down/left/right movements, rather than using goto-commands.
Absolute
Positions the cursor by coordinates with goto-commands.
Trait Implementations
sourceimpl Clone for CursorMode
impl Clone for CursorMode
sourcefn clone(&self) -> CursorMode
fn clone(&self) -> CursorMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CursorMode
impl Debug for CursorMode
sourceimpl Default for CursorMode
impl Default for CursorMode
sourceimpl PartialEq<CursorMode> for CursorMode
impl PartialEq<CursorMode> for CursorMode
impl Copy for CursorMode
impl Eq for CursorMode
impl StructuralEq for CursorMode
impl StructuralPartialEq for CursorMode
Auto Trait Implementations
impl RefUnwindSafe for CursorMode
impl Send for CursorMode
impl Sync for CursorMode
impl Unpin for CursorMode
impl UnwindSafe for CursorMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more