Enum minifb::CursorStyle [] [src]

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

Different style of cursors that can be used

Variants

Arrow

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

Ibeam

Used when indicating insertion (like text field)

Crosshair

Cross-hair cursor

ClosedHand

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

OpenHand

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

ResizeLeftRight

Rezining left-rigth direction

ResizeUpDown

Rezining up-down direction

ResizeAll

Resize in all directions

Trait Implementations

impl Copy for CursorStyle
[src]

impl Clone for CursorStyle
[src]

fn clone(&self) -> CursorStyle

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for CursorStyle
[src]

fn eq(&self, __arg_0: &CursorStyle) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.