Enum datafusion::logical_plan::Operator [−][src]
pub enum Operator {}Show 15 variants
Eq, NotEq, Lt, LtEq, Gt, GtEq, Plus, Minus, Multiply, Divide, Modulus, And, Or, Like, NotLike,
Expand description
Operators applied to expressions
Variants
Expressions are equal
Expressions are not equal
Left side is smaller than right side
Left side is smaller or equal to right side
Left side is greater than right side
Left side is greater or equal to right side
Addition
Subtraction
Multiplication operator, like *
Division operator, like /
Remainder operator, like %
Logical AND, like &&
Logical OR, like ||
Matches a wildcard pattern
Does not match a wildcard pattern
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Operator
impl UnwindSafe for Operator
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
type Output = T
type Output = T
Should always be Self