pub struct RetryEvent {
pub operation: Option<String>,
pub method: Method,
pub url: String,
pub attempt: u32,
pub status: Option<StatusCode>,
pub wait: Duration,
}Fields§
§operation: Option<String>§method: Method§url: String§attempt: u32§status: Option<StatusCode>§wait: DurationTrait Implementations§
Source§impl Clone for RetryEvent
impl Clone for RetryEvent
Source§fn clone(&self) -> RetryEvent
fn clone(&self) -> RetryEvent
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 moreSource§impl Debug for RetryEvent
impl Debug for RetryEvent
Source§impl PartialEq for RetryEvent
impl PartialEq for RetryEvent
impl Eq for RetryEvent
impl StructuralPartialEq for RetryEvent
Auto Trait Implementations§
impl Freeze for RetryEvent
impl RefUnwindSafe for RetryEvent
impl Send for RetryEvent
impl Sync for RetryEvent
impl Unpin for RetryEvent
impl UnsafeUnpin for RetryEvent
impl UnwindSafe for RetryEvent
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