pub enum ExprType {
Show 34 variants
Column(Column),
Alias(Box<AliasNode>),
Literal(ScalarValue),
BinaryExpr(BinaryExprNode),
AggregateExpr(Box<AggregateExprNode>),
IsNullExpr(Box<IsNull>),
IsNotNullExpr(Box<IsNotNull>),
NotExpr(Box<Not>),
Between(Box<BetweenNode>),
Case(Box<CaseNode>),
Cast(Box<CastNode>),
Sort(Box<SortExprNode>),
Negative(Box<NegativeNode>),
InList(Box<InListNode>),
Wildcard(bool),
ScalarFunction(ScalarFunctionNode),
TryCast(Box<TryCastNode>),
WindowExpr(Box<WindowExprNode>),
AggregateUdfExpr(Box<AggregateUdfExprNode>),
ScalarUdfExpr(ScalarUdfExprNode),
GetIndexedField(Box<GetIndexedField>),
GroupingSet(GroupingSetNode),
Cube(CubeNode),
Rollup(RollupNode),
IsTrue(Box<IsTrue>),
IsFalse(Box<IsFalse>),
IsUnknown(Box<IsUnknown>),
IsNotTrue(Box<IsNotTrue>),
IsNotFalse(Box<IsNotFalse>),
IsNotUnknown(Box<IsNotUnknown>),
Like(Box<LikeNode>),
Ilike(Box<ILikeNode>),
SimilarTo(Box<SimilarToNode>),
Placeholder(PlaceholderNode),
}Variants§
Column(Column)
column references
Alias(Box<AliasNode>)
alias
Literal(ScalarValue)
BinaryExpr(BinaryExprNode)
binary expressions
AggregateExpr(Box<AggregateExprNode>)
aggregate expressions
IsNullExpr(Box<IsNull>)
null checks
IsNotNullExpr(Box<IsNotNull>)
NotExpr(Box<Not>)
Between(Box<BetweenNode>)
Case(Box<CaseNode>)
Cast(Box<CastNode>)
Sort(Box<SortExprNode>)
Negative(Box<NegativeNode>)
InList(Box<InListNode>)
Wildcard(bool)
ScalarFunction(ScalarFunctionNode)
TryCast(Box<TryCastNode>)
WindowExpr(Box<WindowExprNode>)
window expressions
AggregateUdfExpr(Box<AggregateUdfExprNode>)
AggregateUDF expressions
ScalarUdfExpr(ScalarUdfExprNode)
Scalar UDF expressions
GetIndexedField(Box<GetIndexedField>)
GroupingSet(GroupingSetNode)
Cube(CubeNode)
Rollup(RollupNode)
IsTrue(Box<IsTrue>)
IsFalse(Box<IsFalse>)
IsUnknown(Box<IsUnknown>)
IsNotTrue(Box<IsNotTrue>)
IsNotFalse(Box<IsNotFalse>)
IsNotUnknown(Box<IsNotUnknown>)
Like(Box<LikeNode>)
Ilike(Box<ILikeNode>)
SimilarTo(Box<SimilarToNode>)
Placeholder(PlaceholderNode)
Implementations§
source§impl ExprType
impl ExprType
sourcepub fn merge<B>(
field: &mut Option<ExprType>,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError>where
B: Buf,
pub fn merge<B>( field: &mut Option<ExprType>, tag: u32, wire_type: WireType, buf: &mut B, ctx: DecodeContext ) -> Result<(), DecodeError>where B: Buf,
Decodes an instance of the message from a buffer, and merges it into self.
sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
source§impl PartialEq<ExprType> for ExprType
impl PartialEq<ExprType> for ExprType
impl StructuralPartialEq for ExprType
Auto Trait Implementations§
impl RefUnwindSafe for ExprType
impl Send for ExprType
impl Sync for ExprType
impl Unpin for ExprType
impl UnwindSafe for ExprType
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