pub enum ComputationKind {
Collect,
Reduce,
EarlyReturn,
}
Expand description
Computation kind.
Variantsยง
Collect
Computation where outputs are collected into a collection.
Reduce
Computation where the inputs or intermediate results are reduced to a single value.
EarlyReturn
Computation which allows for early returns, such as find
operation.
Trait Implementationsยง
Sourceยงimpl Clone for ComputationKind
impl Clone for ComputationKind
Sourceยงfn clone(&self) -> ComputationKind
fn clone(&self) -> ComputationKind
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 moreimpl Copy for ComputationKind
Auto Trait Implementationsยง
impl Freeze for ComputationKind
impl RefUnwindSafe for ComputationKind
impl Send for ComputationKind
impl Sync for ComputationKind
impl Unpin for ComputationKind
impl UnwindSafe for ComputationKind
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