Trait reqwest::ResponseBuilderExt

source ·
pub trait ResponseBuilderExt {
    // Required method
    fn url(self, url: Url) -> 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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ResponseBuilderExt for Builder

source§

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

Implementors§