Enum spacetimedb_vm::expr::Query
source · pub enum Query {
IndexScan(IndexScan),
IndexJoin(IndexJoin),
Select(ColumnOp),
Project(Vec<FieldExpr>, Option<TableId>),
JoinInner(JoinExpr),
}Variants§
IndexScan(IndexScan)
IndexJoin(IndexJoin)
Select(ColumnOp)
Project(Vec<FieldExpr>, Option<TableId>)
JoinInner(JoinExpr)
Implementations§
source§impl Query
impl Query
sourcepub fn sources(&self) -> QuerySources ⓘ
pub fn sources(&self) -> QuerySources ⓘ
Iterate over all SourceExprs involved in the Query.
Sources are yielded from left to right. Duplicates are not filtered out.
Trait Implementations§
source§impl AuthAccess for Query
impl AuthAccess for Query
source§impl Ord for Query
impl Ord for Query
source§impl PartialEq for Query
impl PartialEq for Query
source§impl PartialOrd for Query
impl PartialOrd for Query
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for Query
impl StructuralEq for Query
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnwindSafe for Query
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