pub struct Client<C>(/* private fields */);

Implementations§

source§

impl<C> Client<C>
where C: Connection,

source

pub fn wrap(connection: C) -> Self

source

pub fn connection(&mut self) -> &mut C

source

pub fn release(self) -> C

source

pub async fn get<'a>( &'a mut self, uri: &'a str ) -> Result<Request<&'a mut C>, C::Error>

source

pub async fn post<'a>( &'a mut self, uri: &'a str, headers: &'a [(&'a str, &'a str)] ) -> Result<Request<&'a mut C>, C::Error>

source

pub async fn put<'a>( &'a mut self, uri: &'a str, headers: &'a [(&'a str, &'a str)] ) -> Result<Request<&'a mut C>, C::Error>

source

pub async fn delete<'a>( &'a mut self, uri: &'a str ) -> Result<Request<&'a mut C>, C::Error>

source

pub async fn request<'a>( &'a mut self, method: Method, uri: &'a str, headers: &'a [(&'a str, &'a str)] ) -> Result<Request<&'a mut C>, C::Error>

source

pub fn raw_connection(&mut self) -> Result<&mut C::RawConnection, C::Error>

Trait Implementations§

source§

impl<C: Debug> Debug for Client<C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C> ErrorType for Client<C>
where C: ErrorType,

§

type Error = <C as ErrorType>::Error

Error type of all the IO operations on this type.

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for Client<C>
where C: RefUnwindSafe,

§

impl<C> Send for Client<C>
where C: Send,

§

impl<C> Sync for Client<C>
where C: Sync,

§

impl<C> Unpin for Client<C>
where C: Unpin,

§

impl<C> UnwindSafe for Client<C>
where C: UnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where 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>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.