pub trait IntoBoot<State, Message> {
// Required method
fn into_boot(self) -> (State, Task<Message>);
}
Expand description
The initial state of some Application
.
Required Methods§
Sourcefn into_boot(self) -> (State, Task<Message>)
fn into_boot(self) -> (State, Task<Message>)
Turns some type into the initial state of some Application
.