Enum query_builder::OrderBy [] [src]

pub enum OrderBy<'b> {
    Row(&'b str),
    Expression(&'b str),
}

Representing the way to format the ORDER BY clause of some queries

Variants

Methods

impl<'b> OrderBy<'b>
[src]

[src]

Display the OrderBy clause as a String Currently it doesen't matter if you used OrderBy::Row or OrderBy::Expression as both result in the exat same String though this might change in the future

Trait Implementations

impl<'b> Debug for OrderBy<'b>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'b> Clone for OrderBy<'b>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'b> Eq for OrderBy<'b>
[src]

impl<'b> PartialEq for OrderBy<'b>
[src]

[src]

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

[src]

This method tests for !=.

impl<'b> Ord for OrderBy<'b>
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<'b> PartialOrd for OrderBy<'b>
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'b> Display for OrderBy<'b>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'b> Send for OrderBy<'b>

impl<'b> Sync for OrderBy<'b>