Enum easycurses::CursorVisibility [] [src]

pub enum CursorVisibility {
    Invisible,
    Visible,
    HighlyVisible,
}

The three options you can pass to EasyCurses::set_cursor_visibility.

Note that not all terminals support all visibility modes.

Variants

Makes the cursor invisible. Supported on most terminals.

Makes the cursor visible in the normal way. The Default.

Makes the cursor "highly" visible in some way. Not supported on all terminals.

Trait Implementations

impl Debug for CursorVisibility
[src]

Formats the value using the given formatter.

impl PartialEq for CursorVisibility
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CursorVisibility
[src]

impl Clone for CursorVisibility
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CursorVisibility
[src]

impl Default for CursorVisibility
[src]

Returns the "default value" for a type. Read more