Enum arrow_parser::operator::ExprOperatorName
source · pub enum ExprOperatorName {
Show 32 variants
Addition,
Arrow,
As,
Bind,
BitwiseAnd,
BitwiseLeftShift,
BitwiseOr,
BitwiseRightShift,
BitwiseUnsignedRightShift,
BitwiseXor,
Call,
Division,
Equality,
Exponentiation,
GreaterThan,
GreaterThanOrEqual,
Index,
Inequality,
LessThan,
LessThanOrEqual,
LogicalAnd,
LogicalOr,
MemberAccess,
Multiplication,
Negation,
Not,
OptionalCall,
OptionalCoalescing,
OptionalIndex,
OptionalMemberAccess,
Remainder,
Subtraction,
}
Variants§
Addition
Arrow
As
Bind
BitwiseAnd
BitwiseLeftShift
BitwiseOr
BitwiseRightShift
BitwiseUnsignedRightShift
BitwiseXor
Call
Division
Equality
Exponentiation
GreaterThan
GreaterThanOrEqual
Index
Inequality
LessThan
LessThanOrEqual
LogicalAnd
LogicalOr
MemberAccess
Multiplication
Negation
Not
OptionalCall
OptionalCoalescing
OptionalIndex
OptionalMemberAccess
Remainder
Subtraction
Trait Implementations§
source§impl Clone for ExprOperatorName
impl Clone for ExprOperatorName
source§fn clone(&self) -> ExprOperatorName
fn clone(&self) -> ExprOperatorName
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 ExprOperatorName
impl Debug for ExprOperatorName
source§impl Hash for ExprOperatorName
impl Hash for ExprOperatorName
source§impl PartialEq<ExprOperatorName> for ExprOperatorName
impl PartialEq<ExprOperatorName> for ExprOperatorName
source§fn eq(&self, other: &ExprOperatorName) -> bool
fn eq(&self, other: &ExprOperatorName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.