pub struct PipelineOptimizationConfig {
pub num_streams: usize,
pub dependency_tracking: bool,
pub prefetch_distance: usize,
pub load_balancing: LoadBalancingStrategy,
pub priority_scheduling: bool,
}Expand description
Configuration for pipeline optimization
Fields§
§num_streams: usizeNumber of parallel streams
dependency_tracking: boolEnable dependency tracking
prefetch_distance: usizeMemory prefetch distance
load_balancing: LoadBalancingStrategyLoad balancing strategy
priority_scheduling: boolPriority scheduling enabled
Trait Implementations§
Source§impl Clone for PipelineOptimizationConfig
impl Clone for PipelineOptimizationConfig
Source§fn clone(&self) -> PipelineOptimizationConfig
fn clone(&self) -> PipelineOptimizationConfig
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 PipelineOptimizationConfig
impl Debug for PipelineOptimizationConfig
Auto Trait Implementations§
impl Freeze for PipelineOptimizationConfig
impl RefUnwindSafe for PipelineOptimizationConfig
impl Send for PipelineOptimizationConfig
impl Sync for PipelineOptimizationConfig
impl Unpin for PipelineOptimizationConfig
impl UnwindSafe for PipelineOptimizationConfig
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<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