pub enum CursorType {
Invisible,
Visible,
VeryVisible,
}
Expand description
Cursor type.
Variants§
Invisible
Makes the cursor invisible. Supported on most terminals.
Visible
Makes the cursor visible.
VeryVisible
Makes the cursor “highly” visible in some way. Not supported on all terminals.
Trait Implementations§
Source§impl Clone for CursorType
impl Clone for CursorType
Source§fn clone(&self) -> CursorType
fn clone(&self) -> CursorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CursorType
impl Debug for CursorType
Source§impl Default for CursorType
impl Default for CursorType
Source§fn default() -> CursorType
fn default() -> CursorType
The default cursor type
Source§impl Hash for CursorType
impl Hash for CursorType
Source§impl PartialEq for CursorType
impl PartialEq for CursorType
impl Copy for CursorType
impl Eq for CursorType
impl StructuralPartialEq for CursorType
Auto Trait Implementations§
impl Freeze for CursorType
impl RefUnwindSafe for CursorType
impl Send for CursorType
impl Sync for CursorType
impl Unpin for CursorType
impl UnwindSafe for CursorType
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