logo
pub trait IntoHandler<E, I> {
    type Handler: Handler<I>;

    fn into_handler(self) -> Self::Handler;
}
Expand description

Trait implemented by types that can be converted to a Handler.

Required Associated Types

The target handler.

Required Methods

Convert self to a Handler.

Implementors