pub trait Throttled<F> {
// Required method
fn parse(&self) -> F;
}Expand description
The Throttled trait can be implemented to parse the type held by the actor to a custom output type.
This allows a single Handle to attach itself to multiple throttles, each with a separate parsing implementation.