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

A builder to create a Response.

Implementations

Creates a new ResponseBuilder.

Sets the http version.

Sets the status code.

Sets the content type.

Sets a header value.

Note

Only ASCII characters are allowed, use self.values_mut().encode() 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

Performs the conversion.

Performs the conversion.

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.