pub trait Processor<T: Task>where
    Self: Send + Sync,
{ fn process(&self, task: T) -> Result<<T as Task>::Output>; }
Expand description

Processor of a specific task type

Required Methods

Process the given task.

Implementors