pub struct HttpClientWithUrl { /* private fields */ }
Expand description
An HttpClient
that has a base URL.
Implementations§
Source§impl HttpClientWithUrl
impl HttpClientWithUrl
Sourcepub fn new(
client: Arc<dyn HttpClient>,
base_url: impl Into<String>,
proxy_url: Option<String>,
) -> Self
pub fn new( client: Arc<dyn HttpClient>, base_url: impl Into<String>, proxy_url: Option<String>, ) -> Self
Returns a new HttpClientWithUrl
with the given base URL.
pub fn new_url( client: Arc<dyn HttpClient>, base_url: impl Into<String>, proxy_url: Option<Url>, ) -> Self
Sourcepub fn set_base_url(&self, base_url: impl Into<String>)
pub fn set_base_url(&self, base_url: impl Into<String>)
Sets the base URL.
Trait Implementations§
Source§impl Deref for HttpClientWithUrl
impl Deref for HttpClientWithUrl
Source§impl HttpClient for HttpClientWithUrl
impl HttpClient for HttpClientWithUrl
fn send( &self, req: Request<AsyncBody>, ) -> BoxFuture<'static, Result<Response<AsyncBody>>>
fn proxy(&self) -> Option<&Url>
fn type_name(&self) -> &'static str
fn get<'a>( &'a self, uri: &str, body: AsyncBody, follow_redirects: bool, ) -> BoxFuture<'a, Result<Response<AsyncBody>>>
fn post_json<'a>( &'a self, uri: &str, body: AsyncBody, ) -> BoxFuture<'a, Result<Response<AsyncBody>>>
Auto Trait Implementations§
impl !Freeze for HttpClientWithUrl
impl !RefUnwindSafe for HttpClientWithUrl
impl Send for HttpClientWithUrl
impl Sync for HttpClientWithUrl
impl Unpin for HttpClientWithUrl
impl !UnwindSafe for HttpClientWithUrl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more