pub struct BackoffOptions {
pub initial_delay: u64,
pub max_delay: u64,
pub multiplier: f64,
pub jitter: bool,
}Fields§
§initial_delay: u64§max_delay: u64§multiplier: f64§jitter: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for BackoffOptions
impl RefUnwindSafe for BackoffOptions
impl Send for BackoffOptions
impl Sync for BackoffOptions
impl Unpin for BackoffOptions
impl UnsafeUnpin for BackoffOptions
impl UnwindSafe for BackoffOptions
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