pub struct RetryAsync<T> { /* private fields */ }
Implementationsยง
Trait Implementationsยง
Sourceยงimpl<T: AsyncTransport> AsyncTransport for RetryAsync<T>
impl<T: AsyncTransport> AsyncTransport for RetryAsync<T>
fn send<'life0, 'async_trait>(
&'life0 self,
method: Method,
url: Url,
headers: HashMap<String, String>,
body: Option<String>,
timeout: Duration,
) -> Pin<Box<dyn Future<Output = Result<(StatusCode, String), TencentCloudError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Sourceยงimpl<T: Clone> Clone for RetryAsync<T>
impl<T: Clone> Clone for RetryAsync<T>
Sourceยงfn clone(&self) -> RetryAsync<T>
fn clone(&self) -> RetryAsync<T>
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementationsยง
impl<T> Freeze for RetryAsync<T>where
T: Freeze,
impl<T> RefUnwindSafe for RetryAsync<T>where
T: RefUnwindSafe,
impl<T> Send for RetryAsync<T>where
T: Send,
impl<T> Sync for RetryAsync<T>where
T: Sync,
impl<T> Unpin for RetryAsync<T>where
T: Unpin,
impl<T> UnwindSafe for RetryAsync<T>where
T: UnwindSafe,
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