pub trait InspectTask<S>: AsyncRun<S> {
// Required method
fn inspect(&self, req: Request<'_>, state: Option<&S>);
}
Expand description
A trait for inspecting a task and its associated state.
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.