pub struct BindingContext<'a> {
pub catalog: CatalogReadView,
pub resolution: RelationNameResolution,
pub ctes: BTreeMap<String, RowSchema>,
pub deferred_ctes: BTreeMap<String, CtePlan>,
pub non_returning_ctes: BTreeSet<String>,
pub scalar_subqueries: &'a [QueryPlan],
}Fields§
§catalog: CatalogReadView§resolution: RelationNameResolution§ctes: BTreeMap<String, RowSchema>§deferred_ctes: BTreeMap<String, CtePlan>§non_returning_ctes: BTreeSet<String>§scalar_subqueries: &'a [QueryPlan]Trait Implementations§
Source§impl<'a> Clone for BindingContext<'a>
impl<'a> Clone for BindingContext<'a>
Source§fn clone(&self) -> BindingContext<'a>
fn clone(&self) -> BindingContext<'a>
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 From<BindingContext<'_>> for BindingSnapshot
impl From<BindingContext<'_>> for BindingSnapshot
Source§fn from(context: BindingContext<'_>) -> Self
fn from(context: BindingContext<'_>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for BindingContext<'a>
impl<'a> !UnwindSafe for BindingContext<'a>
impl<'a> Freeze for BindingContext<'a>
impl<'a> Send for BindingContext<'a>
impl<'a> Sync for BindingContext<'a>
impl<'a> Unpin for BindingContext<'a>
impl<'a> UnsafeUnpin for BindingContext<'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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
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