Struct golem_rust::RetryPolicy
source · #[repr(C)]pub struct RetryPolicy {
pub max_attempts: u32,
pub min_delay: u64,
pub max_delay: u64,
pub multiplier: u32,
}
Expand description
Configures how the executor retries failures
Fields§
§max_attempts: u32
The maximum number of retries before the worker becomes permanently failed
min_delay: u64
The minimum delay between retries (applied to the first retry)
max_delay: u64
The maximum delay between retries
multiplier: u32
Multiplier applied to the delay on each retry to implement exponential backoff
Trait Implementations§
source§impl Clone for RetryPolicy
impl Clone for RetryPolicy
source§fn clone(&self) -> RetryPolicy
fn clone(&self) -> RetryPolicy
Returns a copy 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 RetryPolicy
impl Debug for RetryPolicy
impl Copy for RetryPolicy
Auto Trait Implementations§
impl Freeze for RetryPolicy
impl RefUnwindSafe for RetryPolicy
impl Send for RetryPolicy
impl Sync for RetryPolicy
impl Unpin for RetryPolicy
impl UnwindSafe for RetryPolicy
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