Trait viz_core::IntoHandler
source · pub trait IntoHandler<E, I> {
type Handler: Handler<I>;
// Required method
fn into_handler(self) -> Self::Handler;
}
Expand description
Trait implemented by types that can be converted to a Handler
.
Required Associated Types§
Required Methods§
sourcefn into_handler(self) -> Self::Handler
fn into_handler(self) -> Self::Handler
Convert self to a Handler.