pub trait ModifyHandler<H: Handler> {
    type Output;
    type Handler: Handler<Output = Self::Output>;

    fn modify(&self, input: H) -> Self::Handler;
}
Expand description

A trait representing a type for modifying the instance of Handler.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors