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>,
) -> HttpClientWithUrl
pub fn new( client: Arc<dyn HttpClient>, base_url: impl Into<String>, proxy_url: Option<String>, ) -> HttpClientWithUrl
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>, ) -> HttpClientWithUrl
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.
Sourcepub fn build_zed_api_url(
&self,
path: &str,
query: &[(&str, &str)],
) -> Result<Url, Error>
pub fn build_zed_api_url( &self, path: &str, query: &[(&str, &str)], ) -> Result<Url, Error>
Builds a Zed API URL using the given path.
Sourcepub fn build_zed_cloud_url(&self, path: &str) -> Result<Url, Error>
pub fn build_zed_cloud_url(&self, path: &str) -> Result<Url, Error>
Builds a Zed Cloud URL using the given path.
Trait Implementations§
Source§impl Deref for HttpClientWithUrl
impl Deref for HttpClientWithUrl
Source§type Target = HttpClientWithProxy
type Target = HttpClientWithProxy
The resulting type after dereferencing.
Source§impl HttpClient for HttpClientWithUrl
impl HttpClient for HttpClientWithUrl
fn send( &self, req: Request<AsyncBody>, ) -> Pin<Box<dyn Future<Output = Result<Response<AsyncBody>, Error>> + Send>>
fn user_agent(&self) -> Option<&HeaderValue>
fn proxy(&self) -> Option<&Url>
fn get( &self, uri: &str, body: AsyncBody, follow_redirects: bool, ) -> Pin<Box<dyn Future<Output = Result<Response<AsyncBody>, Error>> + Send>>
fn post_json( &self, uri: &str, body: AsyncBody, ) -> Pin<Box<dyn Future<Output = Result<Response<AsyncBody>, Error>> + Send>>
Auto Trait Implementations§
impl !Freeze for HttpClientWithUrl
impl !RefUnwindSafe for HttpClientWithUrl
impl !UnwindSafe for HttpClientWithUrl
impl Send for HttpClientWithUrl
impl Sync for HttpClientWithUrl
impl Unpin for HttpClientWithUrl
impl UnsafeUnpin 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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more