Struct glfw::Cursor

source ·
pub struct Cursor { /* private fields */ }
Expand description

Represents a window cursor that can be used to display any of the standard cursors or load a custom cursor from an image.

Note that the cursor object has a lifetime and will not display correctly after it has been dropped.

Implementations§

Create a new cursor using glfwCreateStandardCursor

Creates a new cursor from the PixelImage provided via glfwCreateCursor

Note that the cursor image will be the same size as the image provided, so scaling it beforehand may be required.

The cursor hotspot is specified in pixels, relative to the upper-left corner of the cursor image. Like all other coordinate systems in GLFW, the X-axis points to the right and the Y-axis points down.

Trait Implementations§

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.