pub struct SpillConfig {
pub conflict_policy: SpillConflictPolicy,
pub tiebreaker: SpillTiebreaker,
pub bounds_policy: SpillBoundsPolicy,
pub buffer_mode: SpillBufferMode,
pub memory_budget_bytes: Option<u64>,
pub cancellation: SpillCancellationPolicy,
pub visibility: SpillVisibility,
}Expand description
Configuration for spill behavior. Nested under EvalConfig to avoid bloating the top-level.
Fields§
§conflict_policy: SpillConflictPolicyWhat to do when target region overlaps non-empty cells or other spills.
tiebreaker: SpillTiebreakerTiebreaker used when policy allows preemption or multiple anchors race.
bounds_policy: SpillBoundsPolicyBounds handling when result exceeds sheet capacity.
buffer_mode: SpillBufferModeBuffering approach for spill writes.
memory_budget_bytes: Option<u64>Optional memory budget for shadow buffering in bytes.
cancellation: SpillCancellationPolicyCancellation behavior while streaming rows.
visibility: SpillVisibilityVisibility policy for staged writes.
Trait Implementations§
Source§impl Clone for SpillConfig
impl Clone for SpillConfig
Source§fn clone(&self) -> SpillConfig
fn clone(&self) -> SpillConfig
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 SpillConfig
impl Debug for SpillConfig
Source§impl Default for SpillConfig
impl Default for SpillConfig
Source§impl PartialEq for SpillConfig
impl PartialEq for SpillConfig
impl Copy for SpillConfig
impl Eq for SpillConfig
impl StructuralPartialEq for SpillConfig
Auto Trait Implementations§
impl Freeze for SpillConfig
impl RefUnwindSafe for SpillConfig
impl Send for SpillConfig
impl Sync for SpillConfig
impl Unpin for SpillConfig
impl UnwindSafe for SpillConfig
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more