Enum nom_sql::FunctionExpression[][src]

pub enum FunctionExpression {
    Avg(Columnbool),
    Count(Columnbool),
    CountStar,
    Sum(Columnbool),
    Max(Column),
    Min(Column),
    GroupConcat(ColumnString),
}

Variants

Trait Implementations

impl Clone for FunctionExpression
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FunctionExpression
[src]

Formats the value using the given formatter. Read more

impl Eq for FunctionExpression
[src]

impl Hash for FunctionExpression
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for FunctionExpression
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for FunctionExpression
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations