pub struct CacheContext<O: CacheableOperand> { /* private fields */ }Implementations§
Source§impl<O: CacheableOperand> CacheContext<O>
impl<O: CacheableOperand> CacheContext<O>
Trait Implementations§
Source§impl<O: CacheableOperand> Estimated for CacheContext<O>
impl<O: CacheableOperand> Estimated for CacheContext<O>
Source§impl<O: CacheableOperand> EvaluateContext for CacheContext<O>
impl<O: CacheableOperand> EvaluateContext for CacheContext<O>
type Operand = O
fn evaluate<'a>( &'a self, graphrecord: &'a GraphRecord, cache: &'a EvaluationCache<'a>, ) -> QueryResult<<O as EvaluateOperand>::ReturnValue<'a>>
Source§impl<O: CacheableOperand> Explain for CacheContext<O>
impl<O: CacheableOperand> Explain for CacheContext<O>
fn describe<'__explain>( &'__explain self, formatter: &mut ExplainFormatter<'__explain, '_>, ) -> Result
Source§impl<O: CacheableOperand> Labeled for CacheContext<O>
impl<O: CacheableOperand> Labeled for CacheContext<O>
Source§impl<O: CacheableOperand> MatchInputs for CacheContext<O>
impl<O: CacheableOperand> MatchInputs for CacheContext<O>
Source§impl<O: CacheableOperand> OptimizePlan for CacheContext<O>
impl<O: CacheableOperand> OptimizePlan for CacheContext<O>
Source§impl<O: CacheableOperand> OptimizerHints for CacheContext<O>
impl<O: CacheableOperand> OptimizerHints for CacheContext<O>
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<O> Freeze for CacheContext<O>where
O: Freeze,
impl<O> RefUnwindSafe for CacheContext<O>where
O: RefUnwindSafe,
impl<O> Send for CacheContext<O>
impl<O> Sync for CacheContext<O>
impl<O> Unpin for CacheContext<O>where
O: Unpin,
impl<O> UnsafeUnpin for CacheContext<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for CacheContext<O>where
O: 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