pub struct LoadBalancerConfig {
pub retry_busy_check_after: Duration,
pub retry_single_external: Duration,
pub notify_timeout: Duration,
pub retry_attempts: usize,
}Fields§
§retry_busy_check_after: DurationTime in-between external busy checks
retry_single_external: DurationTime to wait before repeated attempts
notify_timeout: DurationTimeout to wait on the notifier for
retry_attempts: usizeNumber of attempts to retry a file for if the request fails due to connection loss
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadBalancerConfig
impl RefUnwindSafe for LoadBalancerConfig
impl Send for LoadBalancerConfig
impl Sync for LoadBalancerConfig
impl Unpin for LoadBalancerConfig
impl UnwindSafe for LoadBalancerConfig
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