pub struct EvalContext<'a> {
pub target: Option<TargetColumn>,
pub columns: Columns,
pub row_count: usize,
pub take: Option<usize>,
pub params: &'a Params,
pub symbol_table: &'a SymbolTable,
pub is_aggregate_context: bool,
pub functions: &'a Functions,
pub clock: &'a Clock,
pub arena: Option<&'a QueryArena>,
pub identity: IdentityId,
}Fields§
§target: Option<TargetColumn>§columns: Columns§row_count: usize§take: Option<usize>§params: &'a Params§symbol_table: &'a SymbolTable§is_aggregate_context: bool§functions: &'a Functions§clock: &'a Clock§arena: Option<&'a QueryArena>§identity: IdentityIdImplementations§
Source§impl<'a> EvalContext<'a>
impl<'a> EvalContext<'a>
Source§impl EvalContext<'_>
impl EvalContext<'_>
Source§impl EvalContext<'_>
impl EvalContext<'_>
Source§impl EvalContext<'_>
impl EvalContext<'_>
Source§impl EvalContext<'_>
impl EvalContext<'_>
Trait Implementations§
Source§impl Convert for &EvalContext<'_>
impl Convert for &EvalContext<'_>
Auto Trait Implementations§
impl<'a> Freeze for EvalContext<'a>
impl<'a> !RefUnwindSafe for EvalContext<'a>
impl<'a> !Send for EvalContext<'a>
impl<'a> !Sync for EvalContext<'a>
impl<'a> Unpin for EvalContext<'a>
impl<'a> UnsafeUnpin for EvalContext<'a>
impl<'a> !UnwindSafe for EvalContext<'a>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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