Struct components::foundation::ApplicationSettings
source · [−]pub struct ApplicationSettings {
pub title: String,
pub width: u32,
pub height: u32,
pub fullscreen: bool,
pub before: Box<dyn FnOnce(u32, u32) + 'static, Global>,
pub preloader: Box<dyn FnOnce() + 'static, Global>,
}
Expand description
Application settings
Fields
title: String
The initial title of the application window.
width: u32
Width of the viewport.
height: u32
Height of the viewport.
fullscreen: bool
Shall the viewport be in fullscreen mode?
before: Box<dyn FnOnce(u32, u32) + 'static, Global>
Called before initializing the application host, usually to clear the window.
preloader: Box<dyn FnOnce() + 'static, Global>
Called during application host initialization, usually to display progress.
Trait Implementations
sourceimpl Default for ApplicationSettings
impl Default for ApplicationSettings
sourcefn default() -> ApplicationSettings
fn default() -> ApplicationSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for ApplicationSettings
impl !Send for ApplicationSettings
impl !Sync for ApplicationSettings
impl Unpin for ApplicationSettings
impl !UnwindSafe for ApplicationSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T, C, M> Inspect<'a, C, &'a C, M> for T
impl<'a, T, C, M> Inspect<'a, C, &'a C, M> for T
impl<'a, T, C, M> Inspect<'a, C, &'a mut C, M> for T
impl<'a, T, C, M> Inspect<'a, C, &'a mut C, M> for T
impl<Fr, To> IntoColor<To> for Fr where
To: FromColor<Fr>,
impl<Fr, To> IntoColor<To> for Fr where
To: FromColor<Fr>,
fn into_color(self) -> To
fn into_color(self) -> To
Convert into color
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> SetParameter for T
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
Sets value
as a parameter of self
.