Enum partiql_logical::BindingsOp
source · pub enum BindingsOp {
}
Expand description
Represents PartiQL binding operators; A BindingOp
is an operator that operates on
binding tuples as specified by PartiQL Specification 2019.
Variants§
Scan(Scan)
Pivot(Pivot)
Unpivot(Unpivot)
Filter(Filter)
OrderBy(OrderBy)
LimitOffset(LimitOffset)
Join(Join)
BagOp(BagOp)
Project(Project)
ProjectAll
ProjectValue(ProjectValue)
ExprQuery(ExprQuery)
Distinct
GroupBy(GroupBy)
Having(Having)
Sink
Trait Implementations§
source§impl Clone for BindingsOp
impl Clone for BindingsOp
source§fn clone(&self) -> BindingsOp
fn clone(&self) -> BindingsOp
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BindingsOp
impl Debug for BindingsOp
source§impl Default for BindingsOp
impl Default for BindingsOp
source§fn default() -> BindingsOp
fn default() -> BindingsOp
Returns the “default value” for a type. Read more
source§impl PartialEq<BindingsOp> for BindingsOp
impl PartialEq<BindingsOp> for BindingsOp
source§fn eq(&self, other: &BindingsOp) -> bool
fn eq(&self, other: &BindingsOp) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BindingsOp
impl StructuralEq for BindingsOp
impl StructuralPartialEq for BindingsOp
Auto Trait Implementations§
impl RefUnwindSafe for BindingsOp
impl Send for BindingsOp
impl Sync for BindingsOp
impl Unpin for BindingsOp
impl UnwindSafe for BindingsOp
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