Trait tsukuyomi::Handler[][src]

pub trait Handler {
    fn handle(&self, input: &mut Input) -> Handle;
}

A trait representing handler functions.

Required Methods

Applies an incoming request to this handler.

Implementations on Foreign Types

impl<H> Handler for Arc<H> where
    H: Handler
[src]

Implementors