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§
Object Safety§
This trait is not object safe.