Enum agnes::join::Predicate [] [src]

pub enum Predicate {
    Equal,
    LessThan,
    LessThanEqual,
    GreaterThan,
    GreaterThanEqual,
}

Join predicate (comparison operator between two sides of the join)

Variants

Comparison 'left == right'

Comparison 'left < right'

Comparison 'left <= right'

Comparison 'left > right'

Comparison 'left >= right'

Trait Implementations

impl Debug for Predicate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Predicate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Predicate
[src]

impl PartialEq for Predicate
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Predicate

impl Sync for Predicate