Struct quicksilver::graphics::WindowBuilder[][src]

pub struct WindowBuilder { /* fields omitted */ }

A builder that constructs a Window

Methods

impl WindowBuilder
[src]

Create a default window builder

Set if the window should show its cursor (defaults to true)

Set how the window should handle resizing (defaults to ResizeStrategy::Fit)

Set the minimum size for the window (no value by default)

On the web, this does nothing.

Set the maximum size for the window (no value by default)

On the web, this does nothing.

Set the strategy for scaling images

Set if the window should be in fullscreen mode

On desktop it's borderless fullscreen, and on the web it makes the canvas the size of the browser window

Trait Implementations

impl Debug for WindowBuilder
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations