Trait viz_core::IntoHandler
source · [−]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
Required Methods
fn into_handler(self) -> Self::Handler
fn into_handler(self) -> Self::Handler
Convert self to a Handler.