pub struct ExclusiveOrOperation<M> { /* private fields */ }Trait Implementations§
Source§impl<M: Clone> Clone for ExclusiveOrOperation<M>
impl<M: Clone> Clone for ExclusiveOrOperation<M>
Source§fn clone(&self) -> ExclusiveOrOperation<M>
fn clone(&self) -> ExclusiveOrOperation<M>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<M> ElementKernel<Bare<Mask>> for ExclusiveOrOperation<M>
impl<M> ElementKernel<Bare<Mask>> for ExclusiveOrOperation<M>
type Emission = <M as ArgumentSource<Unaligned, Mask>>::Retention
type OutShape = Bare<Mask>
fn pipeline<'a>( _graphrecord: &'a GraphRecord, prepared: Self::Prepared<'a>, ) -> QueryResult<ElementPipeline<'a, Bare<Mask>, Self>>
fn estimate(&self, input: Estimate, stats: &Stats<'_>) -> Estimate
Source§impl<I, M> ElementKernel<Indexed<I, Mask>> for ExclusiveOrOperation<M>
impl<I, M> ElementKernel<Indexed<I, Mask>> for ExclusiveOrOperation<M>
type Emission = <M as ArgumentSource<Keyed<I>, Mask>>::Retention
type OutShape = Indexed<I, Mask>
fn pipeline<'a>( _graphrecord: &'a GraphRecord, prepared: Self::Prepared<'a>, ) -> QueryResult<ElementPipeline<'a, Indexed<I, Mask>, Self>>
fn estimate(&self, input: Estimate, stats: &Stats<'_>) -> Estimate
Source§impl<M> Explain for ExclusiveOrOperation<M>where
M: Explain,
impl<M> Explain for ExclusiveOrOperation<M>where
M: Explain,
fn describe<'__explain>( &'__explain self, formatter: &mut ExplainFormatter<'__explain, '_>, ) -> Result
Source§impl<M> Labeled for ExclusiveOrOperation<M>where
M: Explain,
impl<M> Labeled for ExclusiveOrOperation<M>where
M: Explain,
Source§impl<M> Operation for ExclusiveOrOperation<M>
impl<M> Operation for ExclusiveOrOperation<M>
Source§impl<M> OperationInputs for ExclusiveOrOperation<M>where
M: PlanIdentity + PlanInputs + 'static,
impl<M> OperationInputs for ExclusiveOrOperation<M>where
M: PlanIdentity + PlanInputs + 'static,
type Inputs<'__inputs, __Primary: '__inputs> = (&'__inputs __Primary, &'__inputs M)
fn inputs<'__inputs, __Primary: '__inputs>( &'__inputs self, primary: &'__inputs __Primary, ) -> Self::Inputs<'__inputs, __Primary>
Source§impl<M> OptimizerHints for ExclusiveOrOperation<M>
impl<M> OptimizerHints for ExclusiveOrOperation<M>
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Source§impl<M> PlanIdentity for ExclusiveOrOperation<M>where
M: PlanIdentity,
impl<M> PlanIdentity for ExclusiveOrOperation<M>where
M: PlanIdentity,
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<__Hasher: Hasher>(&self, state: &mut __Hasher)
Source§impl<M> PlanInputs for ExclusiveOrOperation<M>where
M: PlanInputs,
impl<M> PlanInputs for ExclusiveOrOperation<M>where
M: PlanInputs,
Source§impl<M: Prepare> Prepare for ExclusiveOrOperation<M>
impl<M: Prepare> Prepare for ExclusiveOrOperation<M>
type Prepared<'a> = <M as Prepare>::Prepared<'a> where Self: 'a
fn prepare<'a>( &'a self, graphrecord: &'a GraphRecord, cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Auto Trait Implementations§
impl<M> Freeze for ExclusiveOrOperation<M>where
M: Freeze,
impl<M> RefUnwindSafe for ExclusiveOrOperation<M>where
M: RefUnwindSafe,
impl<M> Send for ExclusiveOrOperation<M>where
M: Send,
impl<M> Sync for ExclusiveOrOperation<M>where
M: Sync,
impl<M> Unpin for ExclusiveOrOperation<M>where
M: Unpin,
impl<M> UnsafeUnpin for ExclusiveOrOperation<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for ExclusiveOrOperation<M>where
M: UnwindSafe,
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<S, T> ExpandTo<T> for S
impl<S, T> ExpandTo<T> for S
type ReturnOperand = <T as Apply<ExpandToOperation<S>>>::Output
fn expand_to(&self, template: &T) -> <S as ExpandTo<T>>::ReturnOperand
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