pub struct ServiceResponse<B = BoxBody> { /* private fields */ }
Expand description

A service level response wrapper.

Implementations§

source§

impl ServiceResponse<BoxBody>

source

pub fn from_err<E: Into<Error>>(err: E, request: HttpRequest) -> Self

Create service response from the error

source§

impl<B> ServiceResponse<B>

source

pub fn new(request: HttpRequest, response: HttpResponse<B>) -> Self

Create service response instance

source

pub fn error_response<E: Into<Error>>(self, err: E) -> ServiceResponse

Create service response for error

source

pub fn into_response<B1>(self, response: HttpResponse<B1>) -> ServiceResponse<B1>

Create service response

source

pub fn request(&self) -> &HttpRequest

Returns reference to original request.

source

pub fn response(&self) -> &HttpResponse<B>

Returns reference to response.

source

pub fn response_mut(&mut self) -> &mut HttpResponse<B>

Returns mutable reference to response.

source

pub fn status(&self) -> StatusCode

Returns response status code.

source

pub fn headers(&self) -> &HeaderMap

Returns response’s headers.

source

pub fn headers_mut(&mut self) -> &mut HeaderMap

Returns mutable response’s headers.

source

pub fn into_parts(self) -> (HttpRequest, HttpResponse<B>)

Destructures ServiceResponse into request and response components.

source

pub fn map_body<F, B2>(self, f: F) -> ServiceResponse<B2>where F: FnOnce(&mut ResponseHead, B) -> B2,

Map the current body type to another using a closure. Returns a new response.

Closure receives the response head and the current body type.

source

pub fn map_into_left_body<R>(self) -> ServiceResponse<EitherBody<B, R>>

source

pub fn map_into_right_body<L>(self) -> ServiceResponse<EitherBody<L, B>>

source

pub fn map_into_boxed_body(self) -> ServiceResponse<BoxBody>where B: MessageBody + 'static,

source

pub fn into_body(self) -> B

Consumes the response and returns its body.

Trait Implementations§

source§

impl<B> Debug for ServiceResponse<B>where B: MessageBody, B::Error: Into<Error>,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<B> From<ServiceResponse<B>> for HttpResponse<B>

source§

fn from(res: ServiceResponse<B>) -> HttpResponse<B>

Converts to this type from the input type.
source§

impl<B> From<ServiceResponse<B>> for Response<B>

source§

fn from(res: ServiceResponse<B>) -> Response<B>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<B = BoxBody> !RefUnwindSafe for ServiceResponse<B>

§

impl<B = BoxBody> !Send for ServiceResponse<B>

§

impl<B = BoxBody> !Sync for ServiceResponse<B>

§

impl<B> Unpin for ServiceResponse<B>where B: Unpin,

§

impl<B = BoxBody> !UnwindSafe for ServiceResponse<B>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more