Trait cosmic::iced::application::View

source ·
pub trait View<'a, State, Message, Theme, Renderer> {
    // Required method
    fn view(
        &self,
        state: &'a State,
    ) -> impl Into<Element<'a, Message, Theme, Renderer>>;
}
Expand description

The view logic of some Application.

This trait allows the application builder to take any closure that returns any Into<Element<'_, Message>>.

Required Methods§

source

fn view( &self, state: &'a State, ) -> impl Into<Element<'a, Message, Theme, Renderer>>

Produces the widget of the Application.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, T, State, Message, Theme, Renderer, Widget> View<'a, State, Message, Theme, Renderer> for T
where T: Fn(&'a State) -> Widget, State: 'static, Widget: Into<Element<'a, Message, Theme, Renderer>>,