pub struct AggregatorConfig {
pub completion_size: Option<usize>,
pub completion_timeout: Option<Duration>,
pub sweep_interval: Option<Duration>,
}Fields§
§completion_size: Option<usize>§completion_timeout: Option<Duration>§sweep_interval: Option<Duration>How often the background task checks for timed-out groups. Pick a
value below completion_timeout (default: timeout / 4, min 50ms).
Trait Implementations§
Source§impl Default for AggregatorConfig
impl Default for AggregatorConfig
Source§fn default() -> AggregatorConfig
fn default() -> AggregatorConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AggregatorConfig
impl RefUnwindSafe for AggregatorConfig
impl Send for AggregatorConfig
impl Sync for AggregatorConfig
impl Unpin for AggregatorConfig
impl UnsafeUnpin for AggregatorConfig
impl UnwindSafe for AggregatorConfig
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