Enum openstack::Sort [] [src]

pub enum Sort<T: Into<String>> {
    Asc(T),
    Desc(T),
}

Sorting request.

Variants

Sorting by given field in ascendant order.

Sorting by given field in descendant order.

Trait Implementations

impl<T: Debug + Into<String>> Debug for Sort<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: Clone + Into<String>> Clone for Sort<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Into<String>> Into<(String, String)> for Sort<T>
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl<T> Send for Sort<T> where
    T: Send

impl<T> Sync for Sort<T> where
    T: Sync