Struct salvo::prelude::Response

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

Represents an HTTP response

Implementations§

Creates a new blank Response.

Creates a new blank Response.

Get headers reference.

Get mutable headers reference.

Sets 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.

Sets body.

Sets body to a new value and returns old value.

Take body from response.

Get cookies reference.

Get mutable cookies reference.

Helper function for get cookie.

Helper function for add cookie.

Helper function for add cookie.

Helper function for remove cookie.

Removes cookie from this CookieJar. If an original cookie with the same name as cookie is present in the jar, a removal cookie will be present in the delta computation.

A “removal” cookie is a cookie that has the same name as the original cookie but has an empty value, a max-age of 0, and an expiration date far in the past. Read more about removal cookies.

Get status code.

Sets status code.

Sets status code.

Get content type.

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

Sets http error.

Sets 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 ResBody 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.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
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