[−][src]Struct actix_web::dev::ServiceResponse
Methods
impl<B> ServiceResponse<B>
[src]
pub fn new(request: HttpRequest, response: Response<B>) -> Self
[src]
Create service response instance
pub fn from_err<E: Into<Error>>(err: E, request: HttpRequest) -> Self
[src]
Create service response from the error
pub fn error_response<E: Into<Error>>(self, err: E) -> Self
[src]
Create service response for error
pub fn into_response<B1>(self, response: Response<B1>) -> ServiceResponse<B1>
[src]
Create service response
pub fn request(&self) -> &HttpRequest
[src]
Get reference to original request
pub fn response(&self) -> &Response<B>
[src]
Get reference to response
pub fn response_mut(&mut self) -> &mut Response<B>
[src]
Get mutable reference to response
pub fn status(&self) -> StatusCode
[src]
Get the response status code
pub fn headers(&self) -> &HeaderMap
[src]
Returns response's headers.
pub fn headers_mut(&mut self) -> &mut HeaderMap
[src]
Returns mutable response's headers.
pub fn checked_expr<F, E>(self, f: F) -> Self where
F: FnOnce(&mut Self) -> Result<(), E>,
E: Into<Error>,
[src]
F: FnOnce(&mut Self) -> Result<(), E>,
E: Into<Error>,
Execute closure and in case of error convert it to response.
pub fn take_body(&mut self) -> ResponseBody<B>
[src]
Extract response body
impl<B> ServiceResponse<B>
[src]
pub fn map_body<F, B2>(self, f: F) -> ServiceResponse<B2> where
F: FnOnce(&mut ResponseHead, ResponseBody<B>) -> ResponseBody<B2>,
[src]
F: FnOnce(&mut ResponseHead, ResponseBody<B>) -> ResponseBody<B2>,
Set a new body
Trait Implementations
impl<B> Into<Response<B>> for ServiceResponse<B>
[src]
impl<B: MessageBody> Debug for ServiceResponse<B>
[src]
impl<B> IntoFuture for ServiceResponse<B>
[src]
type Item = ServiceResponse<B>
The item that the future may resolve with.
type Error = Error
The error that the future may resolve with.
type Future = FutureResult<ServiceResponse<B>, Error>
The future that this type can be converted into.
fn into_future(self) -> Self::Future
[src]
Auto Trait Implementations
impl<B = Body> !Send for ServiceResponse<B>
impl<B = Body> !Sync for ServiceResponse<B>
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<F> IntoFuture for F where
F: Future,
[src]
F: Future,
type Future = F
The future that this type can be converted into.
type Item = <F as Future>::Item
The item that the future may resolve with.
type Error = <F as Future>::Error
The error that the future may resolve with.