Trait finchers::IntoResponder [] [src]

pub trait IntoResponder {
    type Responder: Responder;
    fn into_responder(self) -> Self::Responder;
}

Abstrcution of types to be convert to a Responder.

Associated Types

The type of returned value from into_response

Required Methods

Convert itself into Self::Responder

Implementations on Foreign Types

impl IntoResponder for &'static str
[src]

impl IntoResponder for String
[src]

impl IntoResponder for Cow<'static, str>
[src]

Implementors