[−][src]Struct viaduct_reqwest::CLIENT
Fields
__private_field: ()
Methods from Deref<Target = Client>
pub fn get<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a GET
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn post<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a POST
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn put<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a PUT
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn patch<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a PATCH
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn delete<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a DELETE
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn head<U>(&self, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Convenience method to make a HEAD
request to a URL.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn request<U>(&self, method: Method, url: U) -> RequestBuilder where
U: IntoUrl,
[src]
U: IntoUrl,
Start building a Request
with the Method
and Url
.
Returns a RequestBuilder
, which will allow setting headers and
request body before sending.
Errors
This method fails whenever supplied Url
cannot be parsed.
pub fn execute(&self, request: Request) -> Result<Response, Error>
[src]
Executes a Request
.
A Request
can be built manually with Request::new()
or obtained
from a RequestBuilder with RequestBuilder::build()
.
You should prefer to use the RequestBuilder
and
RequestBuilder::send()
.
Errors
This method fails if there was an error while sending request, or redirect limit was exhausted.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CLIENT
impl Send for CLIENT
impl Sync for CLIENT
impl Unpin for CLIENT
impl UnwindSafe for CLIENT
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,