Enum nannou::CursorState[]

pub enum CursorState {
    Normal,
    Hide,
    Grab,
}

Describes how winit handles the cursor.

Variants

Normal cursor behavior.

The cursor will be invisible when over the window.

Grabs the mouse cursor. The cursor's motion will be confined to this window and the window has exclusive access to further events regarding the cursor.

This is useful for first-person cameras for example.

Trait Implementations

impl Clone for CursorState

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CursorState

Formats the value using the given formatter. Read more

impl Copy for CursorState

impl PartialEq<CursorState> for CursorState

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

This method tests for !=.

Auto Trait Implementations

impl Send for CursorState

impl Sync for CursorState