Struct golem_rust::bindings::golem::api::host::RetryPolicy
source · #[repr(C)]pub struct RetryPolicy {
pub max_attempts: u32,
pub min_delay: Duration,
pub max_delay: Duration,
pub multiplier: f64,
}
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: Duration
The minimum delay between retries (applied to the first retry)
max_delay: Duration
The maximum delay between retries
multiplier: f64
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
source§impl From<RetryPolicy> for RetryPolicy
impl From<RetryPolicy> for RetryPolicy
source§fn from(value: RetryPolicy) -> Self
fn from(value: RetryPolicy) -> Self
Converts to this type from the input type.
source§impl From<RetryPolicy> for RetryPolicy
impl From<RetryPolicy> for RetryPolicy
source§fn from(val: RetryPolicy) -> Self
fn from(val: RetryPolicy) -> Self
Converts to this type from the input type.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)