Trait finchers::Responder [] [src]

pub trait Responder {
    type Error: Error + Send + 'static;
    fn respond(self) -> Result<Response, Self::Error>;
}

The type to be converted to hyper::Response

Associated Types

The error type during respond()

Required Methods

Convert itself to hyper::Response

Implementations on Foreign Types

impl Responder for ()
[src]

[src]

impl Responder for &'static str
[src]

[src]

impl Responder for String
[src]

[src]

Implementors