pub trait DataOrd<Rhs> { }
Expand description

Marker trait to determine whether values can be compared. Unlike PartialOrd, handles Option, which we need for nullable types.

Implementations on Foreign Types§

source§

impl<T> DataOrd<T> for Option<T>where T: PartialOrd<T> + FieldType,

Implementors§

source§

impl<T> DataOrd<T> for Twhere T: PartialOrd<T> + FieldType,