Enum minifb::CursorStyle [] [src]

pub enum CursorStyle {
    Arrow,
    Ibeam,
    Crosshair,
    ClosedHand,
    OpenHand,
    ResizeLeftRight,
    ResizeUpDown,
    ResizeAll,
}

Different style of cursors that can be used

Variants

Regular arrow style (this is what the cursor normal looks like)

Used when indicating insertion (like text field)

Cross-hair cursor

Closed hand which useful for dragging things, may use default hand on unsupported OSes.

Open hand which useful for indicating drangable things, may use default hand on unsupported OSes.

Rezining left-rigth direction

Rezining up-down direction

Resize in all directions

Trait Implementations

impl PartialEq for CursorStyle
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for CursorStyle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for CursorStyle
[src]