pub trait ResumeById: Backend {
// Required method
fn resume_by_id(
&mut self,
id: TaskId<Self::IdType>,
) -> impl Future<Output = Result<bool, Self::Error>> + Send;
}Expand description
Allows resuming a task by its ID
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.