task_control

Trait InspectTask

Source
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§

Source

fn inspect(&self, req: Request<'_>, state: Option<&S>)

Inspects the task and its state.

The state may be missing if it has not yet been inserted into the TaskControl.

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.

Implementors§