pub struct HttpMutationConfig {
pub timeout_ms: u64,
pub max_retries: u32,
pub retry_delay_ms: u64,
}Expand description
Configuration for HTTP mutation client
Fields§
§timeout_ms: u64Request timeout in milliseconds
max_retries: u32Maximum number of retries
retry_delay_ms: u64Delay between retries in milliseconds
Trait Implementations§
Source§impl Clone for HttpMutationConfig
impl Clone for HttpMutationConfig
Source§fn clone(&self) -> HttpMutationConfig
fn clone(&self) -> HttpMutationConfig
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 HttpMutationConfig
impl Debug for HttpMutationConfig
Auto Trait Implementations§
impl Freeze for HttpMutationConfig
impl RefUnwindSafe for HttpMutationConfig
impl Send for HttpMutationConfig
impl Sync for HttpMutationConfig
impl Unpin for HttpMutationConfig
impl UnsafeUnpin for HttpMutationConfig
impl UnwindSafe for HttpMutationConfig
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