This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

Trait yew::scheduler::Runnable

source ·
pub trait Runnable {
    // Required method
    fn run(self: Box<Self>);
}
Expand description

A routine which could be run.

Required Methods§

source

fn run(self: Box<Self>)

Runs a routine with a context instance.

Implementors§