[][src]Trait actix_web::Responder

pub trait Responder {
    type Error: Into<Error>;
    type Future: IntoFuture<Item = Response, Error = Self::Error>;
    fn respond_to(self, req: &HttpRequest) -> Self::Future;
}

Trait implemented by types that can be converted to a http response.

Types that implement this trait can be used as the return type of a handler.

Associated Types

type Error: Into<Error>

The associated error which can be returned.

type Future: IntoFuture<Item = Response, Error = Self::Error>

The future response value.

Loading content...

Required methods

fn respond_to(self, req: &HttpRequest) -> Self::Future

Convert itself to AsyncResult or Error.

Loading content...

Implementations on Foreign Types

impl<T> Responder for Option<T> where
    T: Responder
[src]

impl<T, E> Responder for Result<T, E> where
    T: Responder,
    E: Into<Error>, 
[src]

type Error = Error

type Future = EitherFuture<ResponseFuture<<T::Future as IntoFuture>::Future>, FutureResult<Response, Error>>

impl Responder for ()[src]

impl Responder for &'static str[src]

impl Responder for &'static [u8][src]

impl Responder for String[src]

impl<'a> Responder for &'a String[src]

impl<I, E> Responder for Box<dyn Future<Item = I, Error = E>> where
    I: Responder + 'static,
    E: Into<Error> + 'static, 
[src]

type Error = Error

type Future = Box<dyn Future<Item = Response, Error = Error>>

Loading content...

Implementors

impl Responder for ResponseBuilder[src]

impl Responder for Bytes[src]

impl Responder for BytesMut[src]

impl Responder for Response[src]

impl<A, B> Responder for Either<A, B> where
    A: Responder,
    B: Responder
[src]

type Error = Error

type Future = EitherResponder<<A::Future as IntoFuture>::Future, <B::Future as IntoFuture>::Future>

impl<T> Responder for InternalError<T> where
    T: Debug + Display + 'static, 
[src]

type Error = Error

type Future = Result<Response, Error>

impl<T: Serialize> Responder for Json<T>[src]

type Error = Error

type Future = Result<Response, Error>

Loading content...