pub struct OrderedExecution<R: FusionRuntime> { /* private fields */ }
Expand description
Manage the execution of potentially multiple optimizations and operations out of order.
Implementations§
Source§impl<R: FusionRuntime> OrderedExecution<R>
impl<R: FusionRuntime> OrderedExecution<R>
Sourcepub fn operation_within_optimization(
&self,
index: usize,
) -> Arc<dyn Operation<R>>
pub fn operation_within_optimization( &self, index: usize, ) -> Arc<dyn Operation<R>>
Returns the operation that can be executed without impacting the state of the execution.
This is useful to implement fallback for optimizations.
Auto Trait Implementations§
impl<R> Freeze for OrderedExecution<R>
impl<R> !RefUnwindSafe for OrderedExecution<R>
impl<R> Send for OrderedExecution<R>
impl<R> Sync for OrderedExecution<R>
impl<R> Unpin for OrderedExecution<R>
impl<R> !UnwindSafe for OrderedExecution<R>
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> 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