Struct AppBuilder
pub struct AppBuilder<T> { /* private fields */ }
Expand description
A builder for an App
.
Implementations§
§impl<T> AppBuilder<T>
impl<T> AppBuilder<T>
pub fn new() -> AppBuilder<T>
pub fn new() -> AppBuilder<T>
Create a new application builder.
pub fn delegate(self, delegate: impl AppDelegate<T> + 'static) -> AppBuilder<T>
pub fn delegate(self, delegate: impl AppDelegate<T> + 'static) -> AppBuilder<T>
Add a delegate to the application.
pub fn style<U, B>(self, loader: B) -> AppBuilder<T>
pub fn style<U, B>(self, loader: B) -> AppBuilder<T>
Add a style to the application.
pub fn font(self, font: impl Into<FontSource<'static>>) -> AppBuilder<T>
pub fn font(self, font: impl Into<FontSource<'static>>) -> AppBuilder<T>
Add a font to the application.
pub fn window<V, P>(
self,
window: Window,
builder: impl IntoUiBuilder<V, P, Data = T>,
) -> AppBuilder<T>
pub fn window<V, P>( self, window: Window, builder: impl IntoUiBuilder<V, P, Data = T>, ) -> AppBuilder<T>
Add a window to the application.
pub fn build(self, waker: CommandWaker, fonts: Box<dyn Fonts>) -> App<T>
pub fn build(self, waker: CommandWaker, fonts: Box<dyn Fonts>) -> App<T>
Build the application.
Trait Implementations§
§impl<T> Default for AppBuilder<T>
impl<T> Default for AppBuilder<T>
§fn default() -> AppBuilder<T>
fn default() -> AppBuilder<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> Freeze for AppBuilder<T>
impl<T> !RefUnwindSafe for AppBuilder<T>
impl<T> !Send for AppBuilder<T>
impl<T> !Sync for AppBuilder<T>
impl<T> Unpin for AppBuilder<T>
impl<T> !UnwindSafe for AppBuilder<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more