pub trait Handler<Input>: DynClone + Send + Sync + 'static { type Output; // Required method fn call(&self, input: Input) -> Self::Output; }
The returned type after the call operator is used.
Performs the call operation.