Skip to main content

Struct tauri::http::ResponseBuilder

x3A;:ResponseBuilder,

pub struct ResponseBuilder { /* fields omitted */ }

Expand description

An HTTP response builder

This type can be used to construct an instance of Response through a builder-like pattern.

Implementations#

impl Builder#

pub fn new() -> Builder#

Creates a new default instance of Builder to construct either a Head or a Response.

Examples#

let response = ResponseBuilder::new()
    .status(200)
    .mimetype("text/html")
    .body(Vec::new())
    .unwrap();

pub fn mimetype(self, mimetype: &str) -> Builder#

Set the HTTP mimetype for this response.

pub fn status<T>(self, status: T) -> Builder where StatusCode: TryFrom<T>, <StatusCode as TryFrom<T>>::Error: Into<Error>,#

Set the HTTP status for this response.

pub fn version(self, version: Version) -> Builder#

Set the HTTP version for this response.

This function will configure the HTTP version of the Response that will be returned from Builder::build.

By default this is HTTP/1.1

pub fn header<K, V>(self, key: K, value: V) -> Builder where HeaderName: TryFrom<K>, <HeaderName as TryFrom<K>>::Error: Into<Error>, HeaderValue: TryFrom<V>, <HeaderValue as TryFrom<V>>::Error: Into<Error>,#

Appends a header to this response builder.

This function will append the provided key/value as a header to the internal HeaderMap being constructed. Essentially this is equivalent to calling HeaderMap::append.

pub fn body( self, body: Vec<u8, Global> ) -> Result<Response, Box<dyn Error + 'static, Global>>#

“Consumes” this builder, using the provided body to return a constructed Response.

Errors#

This function may return an error if any previously configured argument failed to parse or get converted to the internal representation. For example if an invalid head was specified via header("Foo", "Bar\r\n") the error will be returned when this function is called rather than when header was called.

Examples#

let response = ResponseBuilder::new()
    .mimetype("text/html")
    .body(Vec::new())
    .unwrap();

Trait Implementations#

impl Debug for Builder#

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>#

Formats the value using the given formatter. Read more

impl Default for Builder#

pub fn default() -> Builder#

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

Auto Trait Implementations#

impl \!RefUnwindSafe for Builder#

impl \!Send for Builder#

impl \!Sync for Builder#

impl Unpin for Builder#

impl \!UnwindSafe for Builder#

Blanket Implementations#

impl<T> Any for T where T: 'static + ?Sized,[src]#

pub fn type_id(&self) -> TypeId[src]#

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where T: ?Sized,[src]#

pub fn borrow(&self) -> &T[src]#

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where T: ?Sized,[src]#

pub fn borrow_mut(&mut self) -> &mutT[src]#

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]#

pub fn from(t: T) -> T[src]#

Performs the conversion.

impl<T, U> Into<U> for T where U: From<T>,[src]#

pub fn into(self) -> U[src]#

Performs the conversion.

impl<T, U> TryFrom<U> for T where U: Into<T>,[src]#

type Error = Infallible#

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]#

Performs the conversion.

impl<T, U> TryInto<U> for T where U: TryFrom<T>,[src]#

type Error = <U as TryFrom<T>>::Error#

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]#

Performs the conversion.

impl<V, T> VZip<V> for T where V: MultiLane<T>,#

pub fn vzip(self) -> V#