Enum glutin::CursorState [] [src]

pub enum CursorState {
    Normal,
    Hide,
    Grab,
}

Describes how glutin 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
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CursorState
[src]

impl Debug for CursorState
[src]

Formats the value using the given formatter.