Trait PartialOrd
pub 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, 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, other: &Rhs) -> boolTests less than (for
selfandother) and is used by the<operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn le(&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, other: &Rhs) -> boolTests greater than (for
selfandother) and is used by the>operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn ge(&self, other: &Rhs) -> boolTests greater than or equal to (for
selfandother) and is used by the>=operator.Examples
assert_eq!; assert_eq!; assert_eq!;fn __chaining_lt(&self, other: &Rhs) -> ControlFlow<bool>If
self == other, returnsControlFlow::Continue(()). Otherwise, returnsControlFlow::Break(self < other).This is useful for chaining together calls when implementing a lexical
PartialOrd::lt, as it allows types (like primitives) which can cheaply check==and<separately to do rather than needing to calculate (then optimize out) the three-wayOrderingresult.fn __chaining_le(&self, other: &Rhs) -> ControlFlow<bool>Same as
__chaining_lt, but for<=instead of<.fn __chaining_gt(&self, other: &Rhs) -> ControlFlow<bool>Same as
__chaining_lt, but for>instead of<.fn __chaining_ge(&self, other: &Rhs) -> ControlFlow<bool>Same as
__chaining_lt, but for>=instead of<.
Implementors
impl PartialOrd for ()impl PartialOrd for Alignmentimpl PartialOrd for AsciiCharimpl PartialOrd for Big32x40impl PartialOrd for Big8x3impl PartialOrd for ByteStrimpl PartialOrd for CStrimpl PartialOrd for CharCaseimpl PartialOrd for CodePointimpl PartialOrd for CodePointInnerimpl PartialOrd for CpuidResultimpl PartialOrd for Durationimpl PartialOrd for Errorimpl PartialOrd for ErrorKindimpl PartialOrd for FieldIdimpl PartialOrd for I32NotAllOnesimpl PartialOrd for I64NotAllOnesimpl PartialOrd for Infallibleimpl PartialOrd for IpAddrimpl PartialOrd for Ipv4Addrimpl PartialOrd for Ipv6Addrimpl PartialOrd for Ipv6MulticastScopeimpl PartialOrd for Location<'_>impl PartialOrd for Nanosecondsimpl PartialOrd for NonZeroCharInnerimpl PartialOrd for NonZeroI128Innerimpl PartialOrd for NonZeroI16Innerimpl PartialOrd for NonZeroI32Innerimpl PartialOrd for NonZeroI64Innerimpl PartialOrd for NonZeroI8Innerimpl PartialOrd for NonZeroIsizeInnerimpl PartialOrd for NonZeroU128Innerimpl PartialOrd for NonZeroU16Innerimpl PartialOrd for NonZeroU32Innerimpl PartialOrd for NonZeroU64Innerimpl PartialOrd for NonZeroU8Innerimpl PartialOrd for NonZeroUsizeInnerimpl PartialOrd for Orderingimpl PartialOrd for PhantomPinnedimpl PartialOrd for SocketAddrimpl PartialOrd for SocketAddrV4impl PartialOrd for SocketAddrV6impl PartialOrd for TypeIdimpl PartialOrd for U32NotAllOnesimpl PartialOrd for U64NotAllOnesimpl PartialOrd for UsizeNoHighBitimpl PartialOrd for VariantIdimpl PartialOrd for Wtf8impl PartialOrd for boolimpl PartialOrd for charimpl PartialOrd for f128impl PartialOrd for f16impl PartialOrd for f32impl PartialOrd for f64impl PartialOrd for i128impl PartialOrd for i16impl PartialOrd for i32impl PartialOrd for i64impl PartialOrd for i8impl PartialOrd for isizeimpl PartialOrd for neverimpl PartialOrd for strimpl PartialOrd for u128impl PartialOrd for u16impl PartialOrd for u32impl PartialOrd for u64impl PartialOrd for u8impl PartialOrd for usizeimpl PartialOrd<IpAddr> for Ipv4Addrimpl PartialOrd<IpAddr> for Ipv6Addrimpl PartialOrd<Ipv4Addr> for IpAddrimpl PartialOrd<Ipv6Addr> for IpAddrimpl<'a> PartialOrd for PhantomContravariantLifetime<'a>impl<'a> PartialOrd for PhantomCovariantLifetime<'a>impl<'a> PartialOrd for PhantomInvariantLifetime<'a>impl<A, B: PointeeSized> PartialOrd<&B> for &A where A: ~const PartialOrd<B> + PointeeSized,impl<A, B: PointeeSized> PartialOrd<&mut B> for &mut A where A: ~const PartialOrd<B> + PointeeSized,impl<A: ~const PartialOrd, Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (A, Z, Y, X, W, V, U, T)impl<B: ~const PartialOrd, A: ~const PartialOrd, Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (B, A, Z, Y, X, W, V, U, T)impl<C: ~const PartialOrd, B: ~const PartialOrd, A: ~const PartialOrd, Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (C, B, A, Z, Y, X, W, V, U, T)impl<D: ~const PartialOrd, C: ~const PartialOrd, B: ~const PartialOrd, A: ~const PartialOrd, Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (D, C, B, A, Z, Y, X, W, V, U, T)impl<Dyn: PointeeSized> PartialOrd for DynMetadata<Dyn>impl<E: ~const PartialOrd, D: ~const PartialOrd, C: ~const PartialOrd, B: ~const PartialOrd, A: ~const PartialOrd, Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (E, D, C, B, A, Z, Y, X, W, V, U, T)impl<F> PartialOrd for fn(T) -> Ret where F: FnPtr,impl<F: FnPtr> PartialOrd for Fimpl<K: PartialOrd, V> PartialOrd for KeyAndValue<K, V>impl<Ptr: Deref, Q: Deref> PartialOrd<Pin<Q>> for Pin<Ptr> where Ptr::Target: PartialOrd<Q::Target>,impl<T> PartialOrd for NonZero<T> where T: ZeroablePrimitive + ~const PartialOrd,impl<T> PartialOrd for PhantomContravariant<T> where T: ?Sized,impl<T> PartialOrd for PhantomCovariant<T> where T: ?Sized,impl<T> PartialOrd for PhantomInvariant<T> where T: ?Sized,impl<T, U> PartialOrd<SyncView<U>> for SyncView<T> where T: Sync + ~const PartialOrd<U> + ?Sized, U: Sync + ?Sized,impl<T, const N: usize> PartialOrd for Mask<T, N> where T: MaskElement + PartialOrd,impl<T, const N: usize> PartialOrd for Simd<T, N> where T: SimdElement + PartialOrd,impl<T: ?Sized + PartialOrd> PartialOrd for ManuallyDrop<T>impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T>impl<T: ?Sized, const VARIANT: u32, const FIELD: u32> PartialOrd for FieldRepresentingType<T, VARIANT, FIELD>impl<T: PartialOrd + Copy> PartialOrd for Cell<T>impl<T: PartialOrd> PartialOrd for Poll<T>impl<T: PartialOrd> PartialOrd for Saturating<T>impl<T: PartialOrd> PartialOrd for Wrapping<T>impl<T: PointeeSized> PartialOrd for *const Timpl<T: PointeeSized> PartialOrd for *mut Timpl<T: PointeeSized> PartialOrd for NonNull<T>impl<T: PointeeSized> PartialOrd for PhantomData<T>impl<T: ~const PartialOrd> PartialOrd for (T,)impl<T: ~const PartialOrd> PartialOrd for Option<T>impl<T: ~const PartialOrd> PartialOrd for Reverse<T>impl<T: ~const PartialOrd> PartialOrd for [T]impl<T: ~const PartialOrd, E: ~const PartialOrd> PartialOrd for Result<T, E>impl<T: ~const PartialOrd, const N: usize> PartialOrd for [T; N]impl<U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (U, T)impl<V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (V, U, T)impl<W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (W, V, U, T)impl<X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (X, W, V, U, T)impl<Y: PartialOrd, R: PartialOrd> PartialOrd for CoroutineState<Y, R>impl<Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (Y, X, W, V, U, T)impl<Z: ~const PartialOrd, Y: ~const PartialOrd, X: ~const PartialOrd, W: ~const PartialOrd, V: ~const PartialOrd, U: ~const PartialOrd, T: ~const PartialOrd> PartialOrd for (Z, Y, X, W, V, U, T)