pub enum ZCombine {
ZInter,
ZUnion,
ZDiff,
SInter,
SUnion,
SDiff,
}Expand description
Which algebra combination a *STORE orchestrator runs after its
gather completes (v2.2). Public: crate::Route::ZAlgebraStore
carries it, and embedders’ route() implementations construct it.
Variants§
ZInter
ZINTERSTORE.
ZUnion
ZUNIONSTORE.
ZDiff
ZDIFFSTORE.
SInter
SINTERSTORE.
SUnion
SUNIONSTORE.
SDiff
SDIFFSTORE.
Trait Implementations§
impl Copy for ZCombine
impl Eq for ZCombine
impl StructuralPartialEq for ZCombine
Auto Trait Implementations§
impl Freeze for ZCombine
impl RefUnwindSafe for ZCombine
impl Send for ZCombine
impl Sync for ZCombine
impl Unpin for ZCombine
impl UnsafeUnpin for ZCombine
impl UnwindSafe for ZCombine
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