Enum text_terminal::CursorStyle
source · pub enum CursorStyle {
FilledBox,
Underscore,
Bar,
EmptyBox,
}
Variants§
FilledBox
A rectangle that covers the entire character box. This is the default.
Underscore
A line beneath the character box.
Bar
A line before (to the left of) the character box.
EmptyBox
An empty box that surrounds the character but does not occlude it.
Trait Implementations§
source§impl Debug for CursorStyle
impl Debug for CursorStyle
source§impl Default for CursorStyle
impl Default for CursorStyle
source§fn default() -> CursorStyle
fn default() -> CursorStyle
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CursorStyle
impl Send for CursorStyle
impl Sync for CursorStyle
impl Unpin for CursorStyle
impl UnwindSafe for CursorStyle
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