Struct differential_dataflow::Config
source · pub struct Config {
pub idle_merge_effort: Option<isize>,
}
Expand description
Configuration options for differential dataflow.
Fields§
§idle_merge_effort: Option<isize>
An amount of arrangement effort to spend each scheduling quantum.
The default value of None
will not schedule operators that maintain arrangements
other than when computation is required. Setting the value to Some(effort)
will
cause these operators to reschedule themselves as long as their arrangemnt has not
reached a compact representation, and each scheduling quantum they will perform
compaction work as if effort
records had been added to the arrangement.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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
source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.