pub struct ResponseBuilder { /* private fields */ }
Expand description

A builder to create a Response.

Implementations

Creates a new ResponseBuilder.

Sets the status code.

Sets the content type.

Sets a header value.

Note

Only ASCII characters are allowed, use self.values_mut().insert_encoded() to allow any character.

Panics

If the value is not a valid HeaderValue.

Returns HeaderValues mutably.

Sets the body dropping the previous one.

Builds a Response. Adding the content-length header if the len of the body is known.

Trait Implementations

Formats the value using the given formatter. Read more

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.

Calls U::from(self).

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

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.