Enum inquerest::Operand [] [src]

pub enum Operand {
    Column(String),
    Function(Function),
    Number(f64),
    Boolean(bool),
    Value(String),
}

Variants

Column(String)Function(Function)Number(f64)Boolean(bool)Value(String)

Trait Implementations

impl Debug for Operand
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for Operand
[src]

fn eq(&self, __arg_0: &Operand) -> bool

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

fn ne(&self, __arg_0: &Operand) -> bool

This method tests for !=.