logo
#[repr(transparent)]
pub struct Window(_);
Expand description

This type represents a window towards the windowing system, that’s used to render the scene of a component. It provides API to control windowing system specific aspects such as the position on the screen.

Implementations

Registers the window with the windowing system in order to make it visible on the screen.

De-registers the window from the windowing system, therefore hiding it.

This function allows registering a callback that’s invoked during the different phases of rendering. This allows custom rendering on top or below of the scene.

This function allows registering a callback that’s invoked when the user tries to close a window. The callback has to return a CloseRequestResponse.

This function issues a request to the windowing system to redraw the contents of the window.

This function returns the scale factor that allows converting between logical and physical pixels.

Returns the position of the window on the screen, in physical screen coordinates and including a window frame (if present).

Sets the position of the window on the screen, in physical screen coordinates and including a window frame (if present). Note that on some windowing systems, such as Wayland, this functionality is not available.

Returns the size of the window on the screen, in physical screen coordinates and excluding a window frame (if present).

Resizes the window to the specified size on the screen, in physical pixels and excluding a window frame (if present).

Dispatch a window event to the scene.

Use this when you’re implementing your own backend and want to forward user input events.

Any position fields in the event must be in the logical pixel coordinate system relative to the top left corner of the window.

Returns true if there is an animation currently active on any property in the Window; false otherwise.

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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more