Enum openstack::Sort
[−]
[src]
pub enum Sort<T: Into<String>> { Asc(T), Desc(T), }
Sorting request.
Variants
Asc(T)Sorting by given field in ascendant order.
Desc(T)Sorting by given field in descendant order.
Trait Implementations
impl<T: Debug + Into<String>> Debug for Sort<T>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<T: Clone + Into<String>> Clone for Sort<T>[src]
fn clone(&self) -> Sort<T>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more