Trait HttpResponseBuilderExt

Source
pub trait HttpResponseBuilderExt {
    // Required methods
    fn url(self, url: Url) -> Self;
    fn json(self, value: &Value) -> Self;
}
Expand description

Extension trait for http::response::Builder objects

Allows the user to add a Url to the http::Response

Required Methods§

Source

fn url(self, url: Url) -> Self

A builder method for the http::response::Builder type that allows the user to add a Url to the http::Response

Source

fn json(self, value: &Value) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl HttpResponseBuilderExt for Builder

Source§

fn url(self, url: Url) -> Self

Source§

fn json(self, value: &Value) -> Self

Implementors§