pub trait SortExt {
    // Required methods
    fn from_desc_bool(desc: bool) -> Sort;
    fn from_mysql_str(s: &str) -> Option<Sort>;
    fn from_str(s: &str) -> Option<Sort>;
    fn to_str(&self) -> &'static str;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SortExt for Sort

Implementors§