pub struct ProductOSClientStandard { /* private fields */ }Implementations§
Trait Implementations§
source§impl ProductOSClient<Either<Full<Bytes>, Empty<Bytes>>, Either<Full<Bytes>, Empty<Bytes>>> for ProductOSClientStandard
impl ProductOSClient<Either<Full<Bytes>, Empty<Bytes>>, Either<Full<Bytes>, Empty<Bytes>>> for ProductOSClientStandard
fn build(&mut self, requester: &ProductOSRequester)
fn new_request( &self, method: Method, url: String ) -> ProductOSRequest<Either<Full<Bytes>, Empty<Bytes>>>
fn request<'life0, 'async_trait>(
&'life0 self,
r: ProductOSRequest<Either<Full<Bytes>, Empty<Bytes>>>
) -> Pin<Box<dyn Future<Output = Result<ProductOSResponse<Either<Full<Bytes>, Empty<Bytes>>>, ProductOSRequestError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn request_simple<'life0, 'life1, 'async_trait>(
&'life0 self,
method: Method,
url: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<ProductOSResponse<Either<Full<Bytes>, Empty<Bytes>>>, ProductOSRequestError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn request_raw<'life0, 'async_trait>(
&'life0 self,
r: Request<Either<Full<Bytes>, Empty<Bytes>>>
) -> Pin<Box<dyn Future<Output = Result<ProductOSResponse<Either<Full<Bytes>, Empty<Bytes>>>, ProductOSRequestError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for ProductOSClientStandard
impl !RefUnwindSafe for ProductOSClientStandard
impl Send for ProductOSClientStandard
impl Sync for ProductOSClientStandard
impl Unpin for ProductOSClientStandard
impl !UnwindSafe for ProductOSClientStandard
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