pub struct OperationContext<I: Apply<P>, P: Operation> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<I: Apply<P>, P: Operation> EvaluateContext for OperationContext<I, P>
impl<I: Apply<P>, P: Operation> EvaluateContext for OperationContext<I, P>
type Operand = <I as Apply<P>>::Output
fn evaluate<'a>( &'a self, graphrecord: &'a GraphRecord, cache: &'a EvaluationCache<'a>, ) -> QueryResult<<Self::Operand as EvaluateOperand>::ReturnValue<'a>>
Source§impl<I: Apply<P>, P: Operation> Explain for OperationContext<I, P>
impl<I: Apply<P>, P: Operation> Explain for OperationContext<I, P>
fn describe<'a>(&'a self, formatter: &mut ExplainFormatter<'a, '_>) -> Result
Source§impl<I: Apply<P>, P: Operation> MatchInputs for OperationContext<I, P>
impl<I: Apply<P>, P: Operation> MatchInputs for OperationContext<I, P>
Source§impl<I: Apply<P>, P: Operation> OptimizePlan for OperationContext<I, P>
impl<I: Apply<P>, P: Operation> OptimizePlan for OperationContext<I, P>
Source§impl<I: Apply<P>, P: Operation> OptimizerHints for OperationContext<I, P>
impl<I: Apply<P>, P: Operation> OptimizerHints for OperationContext<I, P>
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Auto Trait Implementations§
impl<I, P> Freeze for OperationContext<I, P>
impl<I, P> RefUnwindSafe for OperationContext<I, P>where
I: RefUnwindSafe,
P: RefUnwindSafe,
impl<I, P> Send for OperationContext<I, P>
impl<I, P> Sync for OperationContext<I, P>
impl<I, P> Unpin for OperationContext<I, P>
impl<I, P> UnsafeUnpin for OperationContext<I, P>where
I: UnsafeUnpin,
P: UnsafeUnpin,
impl<I, P> UnwindSafe for OperationContext<I, P>where
I: UnwindSafe,
P: 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> 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