Enum sofa::types::SortDirection[][src]

pub enum SortDirection {
    Desc,
    Asc,
}

Sort direction abstraction

Variants

Trait Implementations

impl Eq for SortDirection
[src]

impl PartialEq for SortDirection
[src]

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

This method tests for !=.

impl Debug for SortDirection
[src]

Formats the value using the given formatter. Read more

impl Clone for SortDirection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<String> for SortDirection
[src]

Performs the conversion.

Auto Trait Implementations