Trait PartialOrd
trait PartialOrd<Rhs: PointeeSized = Self>: ~const PartialEq<Rhs> + PointeeSized
Trait for types that form a partial order.
The lt, le, gt, and ge methods of this trait can be called using the <, <=, >, and
>= operators, respectively.
This trait should only contain the comparison logic for a type if one plans on only
implementing PartialOrd but not Ord. Otherwise the comparison logic should be in Ord
and this trait implemented with Some(self.cmp(other)).
The methods of this trait must be consistent with each other and with those of PartialEq.
The following conditions must hold:
a == bif and only ifpartial_cmp(a, b) == Some(Equal).a < bif and only ifpartial_cmp(a, b) == Some(Less)a > bif and only ifpartial_cmp(a, b) == Some(Greater)a <= bif and only ifa < b || a == ba >= bif and only ifa > b || a == ba != bif and only if!(a == b).
Conditions 2–5 above are ensured by the default implementation. Condition 6 is already ensured
by PartialEq.
If Ord is also implemented for Self and Rhs, it must also be consistent with
partial_cmp (see the documentation of that trait for the exact requirements). It's easy to
accidentally make them disagree by deriving some of the traits and manually implementing others.
The comparison relations must satisfy the following conditions (for all a, b, c of type
A, B, C):
- Transitivity: if
A: PartialOrd<B>andB: PartialOrd<C>andA: PartialOrd<C>, thena < bandb < cimpliesa < c. The same must hold for both==and>. This must also work for longer chains, such as whenA: PartialOrd<B>,B: PartialOrd<C>,C: PartialOrd<D>, andA: PartialOrd<D>all exist. - Duality: if
A: PartialOrd<B>andB: PartialOrd<A>, thena < bif and only ifb > a.
Note that the B: PartialOrd<A> (dual) and A: PartialOrd<C> (transitive) impls are not forced
to exist, but these requirements apply whenever they do exist.
Violating these requirements is a logic error. The behavior resulting from a logic error is not
specified, but users of the trait must ensure that such logic errors do not result in
undefined behavior. This means that unsafe code must not rely on the correctness of these
methods.
Cross-crate considerations
Upholding the requirements stated above can become tricky when one crate implements PartialOrd
for a type of another crate (i.e., to allow comparing one of its own types with a type from the
standard library). The recommendation is to never implement this trait for a foreign type. In
other words, such a crate should do impl PartialOrd<ForeignType> for LocalType, but it should
not do impl PartialOrd<LocalType> for ForeignType.
This avoids the problem of transitive chains that criss-cross crate boundaries: for all local
types T, you may assume that no other crate will add impls that allow comparing T < U. In
other words, if other crates add impls that allow building longer transitive chains U1 < ... < T < V1 < ..., then all the types that appear to the right of T must be types that the crate
defining T already knows about. This rules out transitive chains where downstream crates can
add new impls that "stitch together" comparisons of foreign types in ways that violate
transitivity.
Not having such foreign impls also avoids forward compatibility issues where one crate adding
more PartialOrd implementations can cause build failures in downstream crates.
Corollaries
The following corollaries follow from the above requirements:
- irreflexivity of
<and>:!(a < a),!(a > a) - transitivity of
>: ifa > bandb > cthena > c - duality of
partial_cmp:partial_cmp(a, b) == partial_cmp(b, a).map(Ordering::reverse)
Strict and non-strict partial orders
The < and > operators behave according to a strict partial order. However, <= and >=
do not behave according to a non-strict partial order. That is because mathematically, a
non-strict partial order would require reflexivity, i.e. a <= a would need to be true for
every a. This isn't always the case for types that implement PartialOrd, for example:
let a = f64NAN;
assert_eq!;
Derivable
This trait can be used with #[derive].
When derived on structs, it will produce a
lexicographic ordering based on the
top-to-bottom declaration order of the struct's members.
When derived on enums, variants are primarily ordered by their discriminants. Secondarily,
they are ordered by their fields. By default, the discriminant is smallest for variants at the
top, and largest for variants at the bottom. Here's an example:
assert!;
However, manually setting the discriminants can override this default behavior:
assert!;
How can I implement PartialOrd?
PartialOrd only requires implementation of the partial_cmp method, with the others
generated from default implementations.
However it remains possible to implement the others separately for types which do not have a
total order. For example, for floating point numbers, NaN < 0 == false and NaN >= 0 == false
(cf. IEEE 754-2008 section 5.11).
PartialOrd requires your type to be PartialEq.
If your type is Ord, you can implement partial_cmp by using cmp:
use Ordering;
You may also find it useful to use partial_cmp on your type's fields. Here is an example of
Person types who have a floating-point height field that is the only field to be used for
sorting:
use Ordering;
Examples of incorrect PartialOrd implementations
use Ordering;
let a = Character ;
let b = Character ;
// Mistake: `PartialEq` and `PartialOrd` disagree with each other.
assert_eq!; // a == b according to `PartialOrd`.
assert_ne!; // a != b according to `PartialEq`.
Examples
let x: u32 = 0;
let y: u32 = 1;
assert_eq!;
assert_eq!;
Required Methods
fn partial_cmp(self: &Self, other: &Rhs) -> Option<Ordering>This method returns an ordering between
selfandothervalues if one exists.Examples
use Ordering; let result = 1.0.partial_cmp; assert_eq!; let result = 1.0.partial_cmp; assert_eq!; let result = 2.0.partial_cmp; assert_eq!;When comparison is impossible:
let result = f64NAN.partial_cmp; assert_eq!;
Provided Methods
fn lt(self: &Self, other: &Rhs) -> boolTests less than (for
selfandother) and is used by the<operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn le(self: &Self, other: &Rhs) -> boolTests less than or equal to (for
selfandother) and is used by the<=operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn gt(self: &Self, other: &Rhs) -> boolTests greater than (for
selfandother) and is used by the>operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn ge(self: &Self, other: &Rhs) -> boolTests greater than or equal to (for
selfandother) and is used by the>=operator.Examples
assert_eq!; assert_eq!; assert_eq!;
Implementors
impl PartialOrd for Errorimpl PartialOrd for Orderingimpl<T: PointeeSized> PartialOrd for PhantomData<T>impl PartialOrd for u128impl PartialOrd for Ipv6Addrimpl PartialOrd for boolimpl<T: $crate::cmp::PartialOrd> PartialOrd for Wrapping<T>impl PartialOrd for AsciiCharimpl PartialOrd for Alignmentimpl PartialOrd for Location<'_>impl<'a> PartialOrd for PhantomCovariantLifetime<'a>impl PartialOrd for u32impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T>impl PartialOrd for PhantomPinnedimpl<T> PartialOrd for NonZero<T>impl PartialOrd for IpAddrimpl PartialOrd for u8impl PartialOrd for crate::bstr::ByteStrimpl<T: PointeeSized> PartialOrd for NonNull<T>impl<'a> PartialOrd for PhantomContravariantLifetime<'a>impl<F> PartialOrd for fn(_: T) -> Retimpl PartialOrd for CStrimpl<T: PointeeSized> PartialOrd for *mut Timpl PartialOrd for i64impl PartialOrd for charimpl<Y: $crate::cmp::PartialOrd, R: $crate::cmp::PartialOrd> PartialOrd for CoroutineState<Y, R>impl PartialOrd for Ipv6Addrimpl<A, B: PointeeSized> PartialOrd for &Aimpl<T: ~const PartialOrd> PartialOrd for (T)impl PartialOrd for i16impl PartialOrd for f64impl<'a> PartialOrd for PhantomInvariantLifetime<'a>impl PartialOrd for IpAddrimpl<F: FnPtr> PartialOrd for Fimpl<T: PartialOrd> PartialOrd for [T]impl PartialOrd for TypeIdimpl PartialOrd for isizeimpl<Dyn: PointeeSized> PartialOrd for DynMetadata<Dyn>impl PartialOrd for SocketAddrimpl PartialOrd for f16impl PartialOrd for CpuidResultimpl<Ptr: Deref, Q: Deref> PartialOrd for Pin<Ptr>impl<T> PartialOrd for PhantomCovariant<T>impl PartialOrd for u64impl PartialOrd for Ipv4Addrimpl PartialOrd for ()impl PartialOrd for strimpl<T: ?Sized + PartialOrd> PartialOrd for ManuallyDrop<T>impl PartialOrd for SocketAddrV4impl<T, N: usize> PartialOrd for Mask<T, N>impl PartialOrd for u16impl<T: PartialOrd + Copy> PartialOrd for Cell<T>impl<T: ~const $crate::cmp::PartialOrd, E: ~const $crate::cmp::PartialOrd> PartialOrd for Result<T, E>impl<T> PartialOrd for PhantomContravariant<T>impl PartialOrd for IpAddrimpl PartialOrd for i128impl PartialOrd for Durationimpl PartialOrd for usizeimpl<T: $crate::cmp::PartialOrd> PartialOrd for Saturating<T>impl PartialOrd for SocketAddrV6impl<T: ~const PartialOrd> PartialOrd for Reverse<T>impl<A, B: PointeeSized> PartialOrd for &mut Aimpl<T, N: usize> PartialOrd for Simd<T, N>impl<T: PointeeSized> PartialOrd for *const Timpl PartialOrd for i32impl<T, U> PartialOrd for Exclusive<T>impl PartialOrd for f128impl<T> PartialOrd for PhantomInvariant<T>impl PartialOrd for Ipv4Addrimpl PartialOrd for neverimpl<T: $crate::cmp::PartialOrd> PartialOrd for Poll<T>impl<T: PartialOrd, N: usize> PartialOrd for [T; N]impl PartialOrd for i8impl<T: ~const PartialOrd> PartialOrd for Option<T>impl PartialOrd for f32impl PartialOrd for Infallible