pub struct Application<P: Program> { /* private fields */ }
Expand description
The underlying definition and configuration of an iced application.
You can use this API to create and run iced applications step by step—without coupling your logic to a trait or a specific type.
You can create an Application
with the application
helper.
Implementations§
Source§impl<P: Program> Application<P>
impl<P: Program> Application<P>
Sourcepub fn run(self) -> Resultwhere
Self: 'static,
pub fn run(self) -> Resultwhere
Self: 'static,
Runs the Application
.
Sourcepub fn settings(self, settings: Settings) -> Self
pub fn settings(self, settings: Settings) -> Self
Sets the Settings
that will be used to run the Application
.
Sourcepub fn antialiasing(self, antialiasing: bool) -> Self
pub fn antialiasing(self, antialiasing: bool) -> Self
Sets the Settings::antialiasing
of the Application
.
Sourcepub fn default_font(self, default_font: Font) -> Self
pub fn default_font(self, default_font: Font) -> Self
Sets the default Font
of the Application
.
Sourcepub fn font(self, font: impl Into<Cow<'static, [u8]>>) -> Self
pub fn font(self, font: impl Into<Cow<'static, [u8]>>) -> Self
Adds a font to the list of fonts that will be loaded at the start of the Application
.
Sourcepub fn window(self, window: Settings) -> Self
pub fn window(self, window: Settings) -> Self
Sets the window::Settings
of the Application
.
Overwrites any previous window::Settings
.
Sourcepub fn centered(self) -> Self
pub fn centered(self) -> Self
Sets the window::Settings::position
to window::Position::Centered
in the Application
.
Sourcepub fn exit_on_close_request(self, exit_on_close_request: bool) -> Self
pub fn exit_on_close_request(self, exit_on_close_request: bool) -> Self
Sets the window::Settings::exit_on_close_request
of the Application
.
Sourcepub fn window_size(self, size: impl Into<Size>) -> Self
pub fn window_size(self, size: impl Into<Size>) -> Self
Sets the window::Settings::size
of the Application
.
Sourcepub fn transparent(self, transparent: bool) -> Self
pub fn transparent(self, transparent: bool) -> Self
Sets the window::Settings::transparent
of the Application
.
Sourcepub fn resizable(self, resizable: bool) -> Self
pub fn resizable(self, resizable: bool) -> Self
Sets the window::Settings::resizable
of the Application
.
Sourcepub fn decorations(self, decorations: bool) -> Self
pub fn decorations(self, decorations: bool) -> Self
Sets the window::Settings::decorations
of the Application
.
Sourcepub fn position(self, position: Position) -> Self
pub fn position(self, position: Position) -> Self
Sets the window::Settings::position
of the Application
.
Sourcepub fn level(self, level: Level) -> Self
pub fn level(self, level: Level) -> Self
Sets the window::Settings::level
of the Application
.
Sourcepub fn title(
self,
title: impl Title<P::State>,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
pub fn title( self, title: impl Title<P::State>, ) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
Sets the Title
of the Application
.
Sourcepub fn subscription(
self,
f: impl Fn(&P::State) -> Subscription<P::Message>,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
pub fn subscription( self, f: impl Fn(&P::State) -> Subscription<P::Message>, ) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
Sets the subscription logic of the Application
.
Sourcepub fn theme(
self,
f: impl Fn(&P::State) -> P::Theme,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
pub fn theme( self, f: impl Fn(&P::State) -> P::Theme, ) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
Sets the theme logic of the Application
.
Sourcepub fn style(
self,
f: impl Fn(&P::State, &P::Theme) -> Style,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
pub fn style( self, f: impl Fn(&P::State, &P::Theme) -> Style, ) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
Sets the style logic of the Application
.
Sourcepub fn scale_factor(
self,
f: impl Fn(&P::State) -> f64,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
pub fn scale_factor( self, f: impl Fn(&P::State) -> f64, ) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>
Sets the scale factor of the Application
.
Sourcepub fn executor<E>(
self,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>where
E: Executor,
pub fn executor<E>(
self,
) -> Application<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>>where
E: Executor,
Sets the executor of the Application
.
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for Application<P>where
P: Freeze,
impl<P> RefUnwindSafe for Application<P>where
P: RefUnwindSafe,
impl<P> Send for Application<P>where
P: Send,
impl<P> Sync for Application<P>where
P: Sync,
impl<P> Unpin for Application<P>where
P: Unpin,
impl<P> UnwindSafe for Application<P>where
P: UnwindSafe,
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<State, Message> IntoBoot<State, Message> for State
impl<State, Message> IntoBoot<State, Message> for State
Source§fn into_boot(self) -> (State, Task<Message>)
fn into_boot(self) -> (State, Task<Message>)
Application
.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more