Trait rustful::handler::Build [] [src]

pub trait Build<'a> {
    type Builder: 'a;
    fn get_builder(&'a mut self, context: BuilderContext) -> Self::Builder;
}

A trait for handlers that can be build, using a chainable API.

Associated Types

The type that provides the builder API.

Required Methods

Get the builder type for this type, and prepare it with a context.

Implementors