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.

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.