pub trait SqlOrd: SqlType { }Expand description
Marker trait for types which can be used with MAX and MIN
Implementors§
impl SqlOrd for BigInt
impl SqlOrd for Date
impl SqlOrd for Datetime
Available on crate feature
mysql_backend only.impl SqlOrd for Double
impl SqlOrd for Float
impl SqlOrd for Integer
impl SqlOrd for Interval
impl SqlOrd for SmallInt
impl SqlOrd for Text
impl SqlOrd for Time
impl SqlOrd for Timestamp
impl SqlOrd for Timestamptz
Available on crate feature
postgres only.impl SqlOrd for Unsigned<BigInt>
Available on crate feature
mysql_backend only.impl SqlOrd for Unsigned<Integer>
Available on crate feature
mysql_backend only.impl SqlOrd for Unsigned<SmallInt>
Available on crate feature
mysql_backend only.impl<T> SqlOrd for Nullable<T>where T: SqlOrd + SqlType<IsNull = NotNull>,
impl<T: SqlOrd> SqlOrd for Array<T>
Available on crate feature
postgres only.