pub struct RetryConfigSection {
pub max_retries: u32,
pub initial_delay_ms: u64,
pub max_delay_ms: u64,
}Fields§
§max_retries: u32§initial_delay_ms: u64§max_delay_ms: u64Trait Implementations§
Source§impl Clone for RetryConfigSection
impl Clone for RetryConfigSection
Source§fn clone(&self) -> RetryConfigSection
fn clone(&self) -> RetryConfigSection
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 RetryConfigSection
impl Debug for RetryConfigSection
Source§impl<'de> Deserialize<'de> for RetryConfigSection
impl<'de> Deserialize<'de> for RetryConfigSection
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
Source§impl Serialize for RetryConfigSection
impl Serialize for RetryConfigSection
Source§impl Validate for RetryConfigSection
impl Validate for RetryConfigSection
Source§impl<'v_a> ValidateArgs<'v_a> for RetryConfigSection
impl<'v_a> ValidateArgs<'v_a> for RetryConfigSection
Auto Trait Implementations§
impl Freeze for RetryConfigSection
impl RefUnwindSafe for RetryConfigSection
impl Send for RetryConfigSection
impl Sync for RetryConfigSection
impl Unpin for RetryConfigSection
impl UnwindSafe for RetryConfigSection
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