pub struct OrchestrateRetryConfig {
pub max_attempts: u32,
pub base_delay: Duration,
pub max_delay: Duration,
pub backoff_multiplier: f32,
pub retry_on_errors: Vec<String>,
}Expand description
Retry configuration for Orchestrate operations
Fields§
§max_attempts: u32Maximum number of retry attempts
base_delay: DurationBase delay between retries
max_delay: DurationMaximum delay between retries
backoff_multiplier: f32Exponential backoff multiplier
retry_on_errors: Vec<String>Retry on specific error types
Trait Implementations§
Source§impl Clone for OrchestrateRetryConfig
impl Clone for OrchestrateRetryConfig
Source§fn clone(&self) -> OrchestrateRetryConfig
fn clone(&self) -> OrchestrateRetryConfig
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 OrchestrateRetryConfig
impl Debug for OrchestrateRetryConfig
Source§impl Default for OrchestrateRetryConfig
impl Default for OrchestrateRetryConfig
Source§impl<'de> Deserialize<'de> for OrchestrateRetryConfig
impl<'de> Deserialize<'de> for OrchestrateRetryConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OrchestrateRetryConfig
impl RefUnwindSafe for OrchestrateRetryConfig
impl Send for OrchestrateRetryConfig
impl Sync for OrchestrateRetryConfig
impl Unpin for OrchestrateRetryConfig
impl UnwindSafe for OrchestrateRetryConfig
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