pub trait Task {
// Required method
fn is_active(&self) -> bool;
}
Expand description
A task is an ongoing process which is part of a Yew application.
Tasks should cancel themselves when they are dropped.
pub trait Task {
// Required method
fn is_active(&self) -> bool;
}
A task is an ongoing process which is part of a Yew application.
Tasks should cancel themselves when they are dropped.