Struct minifb::WindowOptions

source ·
pub struct WindowOptions {
    pub borderless: bool,
    pub title: bool,
    pub resize: bool,
    pub scale: Scale,
    pub scale_mode: ScaleMode,
    pub topmost: bool,
    pub transparency: bool,
    pub none: bool,
}
Expand description

WindowOptions is creation settings for the window. By default the settings are defined for displayng a 32-bit buffer (no scaling of window is possible)

Fields§

§borderless: bool

If the window should be borderless (default: false)

§title: bool

If the window should have a title (default: true)

§resize: bool

If it should be possible to resize the window (default: false)

§scale: Scale

Scale of the window that used in conjunction with update_with_buffer (default: X1)

§scale_mode: ScaleMode

Adjust how the scaling of the buffer used with update_with_buffer should be done.

§topmost: bool

Should the window be the topmost window (default: false)

§transparency: bool

Specifies whether or not the window is allowed to draw transparent pixels (default: false) Requires borderless to be ‘true’ TODO: Currently not implemented on OSX. TODO: Make it work without none option on windows.

§none: bool

Required for transparency on windows. Should be mutually exclusive to resize, automatically assumes borderless. Not supported on OSX.

Trait Implementations§

source§

impl Clone for WindowOptions

source§

fn clone(&self) -> WindowOptions

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for WindowOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for WindowOptions

source§

fn default() -> WindowOptions

Returns the “default value” for a type. Read more
source§

impl Copy for WindowOptions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.