[][src]Trait lando::IntoResponse

pub trait IntoResponse {
    fn into_response(self) -> Response<Body>;
}

A conversion of self into a Response

Implementations for Response<B> where B: Into<Body>, B where B: Into<Body> and serde_json::Value are provided

example

use lando::{Body, IntoResponse, Response};

assert_eq!(
  "hello".into_response().body(),
  Response::new(Body::from("hello")).body()
);

Required Methods

Return a translation of self into Response<Body>

Implementations on Foreign Types

impl IntoResponse for Value
[src]

Implementors

impl<B> IntoResponse for Response<B> where
    B: Into<Body>, 
[src]

impl<B> IntoResponse for B where
    B: Into<Body>, 
[src]