logo

Struct salvo::Response[][src]

pub struct Response { /* fields omitted */ }
Expand description

Represents an HTTP response

Implementations

Creates a new blank Response.

Get headers reference.

Get mutable headers reference.

Set headers.

Get version.

Get mutable version reference.

Get body reference.

Get mutable body reference.

Set body.

Take body from response.

Take body from response.

Take body as String from response.

Take body as String from response with charset.

Take body bytes from response.

Get cookies reference.

Get mutable cookies reference.

Helper function for get cookie.

Helper function for add cookie.

Helper function for remove cookie.

Get status code.

Set status code.

Get content type.

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

Set http error.

Render serializable data as json content. It will set content-type to application/json; charset=utf-8.

Render text as json content. It will set content-type to application/json; charset=utf-8.

Render text as html content. It will set content-type to text/html; charset=utf-8.

Render plain text content. It will set content-type to text/plain; charset=utf-8.

Render text as xml content. It will set content-type to text/xml; charset=utf-8.

RenderBinary renders store from memory (which could be a file that has not been written, the output from some function, or bytes streamed from somewhere else, as long it implements io.Reader). When called directly on something generated or streamed, modtime should mostly likely be time.Now().

Write bytes data to body.

Write streaming data.

Redirect temporary.

Redirect found.

Redirect other.

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

Performs the conversion.

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.

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

Performs the conversion.

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