Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::rel::Rex - Rust
[go: Go Back, main page]

Enum datafusion::rel::Rex [] [src]

pub enum Rex {
    TupleValue(usize),
    Literal(Value),
    BinaryExpr {
        left: Box<Rex>,
        op: Operator,
        right: Box<Rex>,
    },
    ScalarFunction {
        name: String,
        args: Vec<Rex>,
    },
}

Relation Expression

Variants

index into a value within the tuple

literal value

binary expression e.g. "age > 21"

Fields of BinaryExpr

scalar function

Fields of ScalarFunction

Methods

impl Rex
[src]

[src]

Trait Implementations

impl Debug for Rex
[src]

[src]

Formats the value using the given formatter.

impl Clone for Rex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more