pub trait TaskContextProvider {
// Required method
fn task_ctx(&self) -> Arc<TaskContext> ⓘ;
}Expand description
Produce the TaskContext.
Required Methods§
fn task_ctx(&self) -> Arc<TaskContext> ⓘ
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".