pub unsafe trait StableOrd: Ord {
    const CAN_USE_UNSTABLE_SORT: bool;
}
Expand description

Trait for marking a type as having a sort order that is stable across compilation session boundaries. More formally:

Ord::cmp(a1, b1) == Ord::cmp(a2, b2)
   where a2 = decode(encode(a1, context1), context2)
         b2 = decode(encode(b1, context1), context2)

i.e. the result of Ord::cmp is not influenced by encoding the values in one session and then decoding them in another session.

This is trivially true for types where encoding and decoding don’t change the bytes of the values that are used during comparison and comparison only depends on these bytes (as opposed to some non-local state). Examples are u32, String, Path, etc.

But it is not true for:

  • *const T and *mut T because the values of these pointers will change between sessions.
  • DefIndex, CrateNum, LocalDefId, because their concrete values depend on state that might be different between compilation sessions.

The associated constant CAN_USE_UNSTABLE_SORT denotes whether unstable sorting can be used for this type. Set to true if and only if a == b implies a and b are fully indistinguishable.

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl StableOrd for &str

source§

impl StableOrd for bool

source§

impl StableOrd for char

source§

impl StableOrd for i8

source§

impl StableOrd for i16

source§

impl StableOrd for i32

source§

impl StableOrd for i64

source§

impl StableOrd for i128

source§

impl StableOrd for isize

source§

impl StableOrd for u8

source§

impl StableOrd for u16

source§

impl StableOrd for u32

source§

impl StableOrd for u64

source§

impl StableOrd for u128

source§

impl StableOrd for ()

source§

impl StableOrd for usize

source§

impl StableOrd for String

source§

impl StableOrd for Path

source§

impl StableOrd for PathBuf

source§

impl<T1: StableOrd, T2: StableOrd> StableOrd for (T1, T2)

source§

impl<T1: StableOrd, T2: StableOrd, T3: StableOrd> StableOrd for (T1, T2, T3)

source§

impl<T1: StableOrd, T2: StableOrd, T3: StableOrd, T4: StableOrd> StableOrd for (T1, T2, T3, T4)

source§

impl<T: StableOrd> StableOrd for Option<T>

source§

const CAN_USE_UNSTABLE_SORT: bool = T::CAN_USE_UNSTABLE_SORT

source§

impl<T: StableOrd> StableOrd for &T

source§

const CAN_USE_UNSTABLE_SORT: bool = T::CAN_USE_UNSTABLE_SORT

Implementors§