Struct actix_web::dev::Response

source ·
pub struct Response<B> { /* private fields */ }
Expand description

An HTTP response.

Implementations§

source§

impl Response<BoxBody>

source

pub fn new(status: StatusCode) -> Response<BoxBody>

Constructs a new response with default body.

source

pub fn build(status: StatusCode) -> ResponseBuilder

Constructs a new response builder.

source

pub fn ok() -> Response<BoxBody>

Constructs a new response with status 200 OK.

source

pub fn bad_request() -> Response<BoxBody>

Constructs a new response with status 400 Bad Request.

source

pub fn not_found() -> Response<BoxBody>

Constructs a new response with status 404 Not Found.

source

pub fn internal_server_error() -> Response<BoxBody>

Constructs a new response with status 500 Internal Server Error.

source§

impl<B> Response<B>

source

pub fn with_body(status: StatusCode, body: B) -> Response<B>

Constructs a new response with given body.

source

pub fn head(&self) -> &ResponseHead

Returns a reference to the head of this response.

source

pub fn head_mut(&mut self) -> &mut ResponseHead

Returns a mutable reference to the head of this response.

source

pub fn status(&self) -> StatusCode

Returns the status code of this response.

source

pub fn status_mut(&mut self) -> &mut StatusCode

Returns a mutable reference the status code of this response.

source

pub fn headers(&self) -> &HeaderMap

Returns a reference to response headers.

source

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

Returns a mutable reference to response headers.

source

pub fn upgrade(&self) -> bool

Returns true if connection upgrade is enabled.

source

pub fn keep_alive(&self) -> bool

Returns true if keep-alive is enabled.

source

pub fn extensions(&self) -> Ref<'_, Extensions>

Returns a reference to the request-local data/extensions container.

source

pub fn extensions_mut(&mut self) -> RefMut<'_, Extensions>

Returns a mutable reference to the request-local data/extensions container.

source

pub fn body(&self) -> &B

Returns a reference to the body of this response.

source

pub fn set_body<B2>(self, body: B2) -> Response<B2>

Sets new body.

source

pub fn drop_body(self) -> Response<()>

Drops body and returns new response.

source

pub fn into_parts(self) -> (Response<()>, B)

Returns split head and body.

§Implementation Notes

Due to internal performance optimizations, the first element of the returned tuple is a Response as well but only contains the head of the response this was called on.

source

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

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

Closure receives the response head and the current body type.

source

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

Map the current body to a type-erased BoxBody.

source

pub fn into_body(self) -> B

Returns the response body, dropping all other parts.

Trait Implementations§

source§

impl<B> Debug for Response<B>
where B: MessageBody,

source§

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

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

impl<B> Default for Response<B>
where B: Default,

source§

fn default() -> Response<B>

Returns the “default value” for a type. Read more
source§

impl From<&'static [u8]> for Response<&'static [u8]>

source§

fn from(val: &'static [u8]) -> Response<&'static [u8]>

Converts to this type from the input type.
source§

impl From<&HandshakeError> for Response<BoxBody>

source§

fn from(err: &HandshakeError) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl From<&String> for Response<String>

source§

fn from(val: &String) -> Response<String>

Converts to this type from the input type.
source§

impl From<&Vec<u8>> for Response<Vec<u8>>

source§

fn from(val: &Vec<u8>) -> Response<Vec<u8>>

Converts to this type from the input type.
source§

impl From<&'static str> for Response<&'static str>

source§

fn from(val: &'static str) -> Response<&'static str>

Converts to this type from the input type.
source§

impl From<ByteString> for Response<ByteString>

source§

fn from(val: ByteString) -> Response<ByteString>

Converts to this type from the input type.
source§

impl From<Bytes> for Response<Bytes>

source§

fn from(val: Bytes) -> Response<Bytes>

Converts to this type from the input type.
source§

impl From<BytesMut> for Response<BytesMut>

source§

fn from(val: BytesMut) -> Response<BytesMut>

Converts to this type from the input type.
source§

impl<E, U, I> From<DispatcherError<E, U, I>> for Response<BoxBody>
where E: Debug + Display, U: Encoder<I> + Decoder, <U as Encoder<I>>::Error: Debug, <U as Decoder>::Error: Debug,

source§

fn from(err: DispatcherError<E, U, I>) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl From<Error> for Response<BoxBody>

source§

fn from(err: Error) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl From<Error> for Response<BoxBody>

source§

fn from(err: Error) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl From<HandshakeError> for Response<BoxBody>

source§

fn from(err: HandshakeError) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl<B> From<HttpResponse<B>> for Response<B>

source§

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

Converts to this type from the input type.
source§

impl From<HttpResponseBuilder> for Response<BoxBody>

source§

fn from(builder: HttpResponseBuilder) -> Self

Converts to this type from the input type.
source§

impl From<Infallible> for Response<BoxBody>

source§

fn from(val: Infallible) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl From<ParseError> for Response<BoxBody>

source§

fn from(err: ParseError) -> Response<BoxBody>

Converts to this type from the input type.
source§

impl<B> From<Response<B>> for HttpResponse<B>

source§

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

Converts to this type from the input type.
source§

impl From<Response<BoxBody>> for DispatchError

source§

fn from(original: Response<BoxBody>) -> DispatchError

Converts to this type from the input type.
source§

impl From<ResponseBuilder> for Response<EitherBody<()>>

source§

fn from(builder: ResponseBuilder) -> Response<EitherBody<()>>

Converts to this type from the input type.
source§

impl<I, E> From<Result<I, E>> for Response<BoxBody>
where I: Into<Response<BoxBody>>, E: Into<Error>,

source§

fn from(res: Result<I, E>) -> Response<BoxBody>

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.
source§

impl From<String> for Response<String>

source§

fn from(val: String) -> Response<String>

Converts to this type from the input type.
source§

impl From<Vec<u8>> for Response<Vec<u8>>

source§

fn from(val: Vec<u8>) -> Response<Vec<u8>>

Converts to this type from the input type.
source§

impl Responder for Response<BoxBody>

§

type Body = BoxBody

source§

fn respond_to(self, _: &HttpRequest) -> HttpResponse<Self::Body>

Convert self to HttpResponse.
source§

fn customize(self) -> CustomizeResponder<Self>
where Self: Sized,

Wraps responder to allow alteration of its response. Read more

Auto Trait Implementations§

§

impl<B> !RefUnwindSafe for Response<B>

§

impl<B> !Send for Response<B>

§

impl<B> !Sync for Response<B>

§

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

§

impl<B> !UnwindSafe for Response<B>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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 T
where U: From<T>,

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 for T

§

type Output = T

Should always be Self
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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