Trait rustful::handler::FromHandler [] [src]

pub trait FromHandler<T> {
    fn from_handler(context: BuilderContext, handler: T) -> Self;
}

Create a handler from another handler.

Required Methods

Create a handler from another handler and a BuilderContext.

Implementations on Foreign Types

impl<T: FromHandler<H>, H> FromHandler<H> for Option<T>
[src]

Implementors