logo
pub struct Response { /* private fields */ }
Expand description

Represents an HTTP response

Implementations

Creates a new blank Response.

Get headers reference.

Get mutable headers reference.

Set headers.

Modify a header for this response.

When overwrite is set to true, If the header is already present, the value will be replaced. When overwrite is set to false, The new header is always appended to the request, even if the header already exists.

Modify a header for this response.

When overwrite is set to true, If the header is already present, the value will be replaced. When overwrite is set to false, The new header is always appended to the request, even if the header already exists.

Get version.

Get mutable version reference.

Get body reference.

Get mutable body reference.

Set body.

Set body.

Set body to a new value and returns old value.

Take body from response.

Available on crate feature cookie only.

Get cookies reference.

Available on crate feature cookie only.

Get mutable cookies reference.

Available on crate feature cookie only.

Helper function for get cookie.

Available on crate feature cookie only.

Helper function for add cookie.

Available on crate feature cookie only.

Helper function for add cookie.

Available on crate feature cookie only.

Helper function for remove cookie.

Get status code.

Set status code.

Set status code.

Get content type.

Get http error if exists, only exists after use set_status_error set http error.

Set http error.

Set http error.

Render content.

Render content.

Render content with status code.

Render content with status code.

Write bytes data to body. If body is none, a new Body will created.

Write streaming data.

Trait Implementations

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Take body as String from response.

Take body as deserialize it to type T instance.

Take body as String from response with charset.

Take all body bytes. If body is none, it will creates and returns a new Bytes.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

Should always be Self

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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