Trait Ord

1.6.0 · Source
pub trait Ord: Eq + PartialOrd {
    // Required method
    fn cmp(&self, other: &Self) -> Ordering;

    // Provided methods
    fn max(self, other: Self) -> Self
       where Self: Sized { ... }
    fn min(self, other: Self) -> Self
       where Self: Sized { ... }
    fn clamp(self, min: Self, max: Self) -> Self
       where Self: Sized { ... }
}
Expand description

Trait for types that form a total order.

Implementations must be consistent with the PartialOrd implementation, and ensure max, min, and clamp are consistent with cmp:

  • partial_cmp(a, b) == Some(cmp(a, b)).
  • max(a, b) == max_by(a, b, cmp) (ensured by the default implementation).
  • min(a, b) == min_by(a, b, cmp) (ensured by the default implementation).
  • For a.clamp(min, max), see the method docs (ensured by the default implementation).

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.

§Corollaries

From the above and the requirements of PartialOrd, it follows that for all a, b and c:

  • exactly one of a < b, a == b or a > b is true; and
  • < is transitive: a < b and b < c implies a < c. The same must hold for both == and >.

Mathematically speaking, the < operator defines a strict weak order. In cases where == conforms to mathematical equality, it also defines a strict total order.

§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 ordered primarily 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:

#[derive(PartialEq, Eq, PartialOrd, Ord)]
enum E {
    Top,
    Bottom,
}

assert!(E::Top < E::Bottom);

However, manually setting the discriminants can override this default behavior:

#[derive(PartialEq, Eq, PartialOrd, Ord)]
enum E {
    Top = 2,
    Bottom = 1,
}

assert!(E::Bottom < E::Top);

§Lexicographical comparison

Lexicographical comparison is an operation with the following properties:

  • Two sequences are compared element by element.
  • The first mismatching element defines which sequence is lexicographically less or greater than the other.
  • If one sequence is a prefix of another, the shorter sequence is lexicographically less than the other.
  • If two sequences have equivalent elements and are of the same length, then the sequences are lexicographically equal.
  • An empty sequence is lexicographically less than any non-empty sequence.
  • Two empty sequences are lexicographically equal.

§How can I implement Ord?

Ord requires that the type also be PartialOrd, PartialEq, and Eq.

Because Ord implies a stronger ordering relationship than PartialOrd, and both Ord and PartialOrd must agree, you must choose how to implement Ord first. You can choose to derive it, or implement it manually. If you derive it, you should derive all four traits. If you implement it manually, you should manually implement all four traits, based on the implementation of Ord.

Here’s an example where you want to define the Character comparison by health and experience only, disregarding the field mana:

use std::cmp::Ordering;

struct Character {
    health: u32,
    experience: u32,
    mana: f32,
}

impl Ord for Character {
    fn cmp(&self, other: &Self) -> Ordering {
        self.experience
            .cmp(&other.experience)
            .then(self.health.cmp(&other.health))
    }
}

impl PartialOrd for Character {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl PartialEq for Character {
    fn eq(&self, other: &Self) -> bool {
        self.health == other.health && self.experience == other.experience
    }
}

impl Eq for Character {}

If all you need is to slice::sort a type by a field value, it can be simpler to use slice::sort_by_key.

§Examples of incorrect Ord implementations

use std::cmp::Ordering;

#[derive(Debug)]
struct Character {
    health: f32,
}

impl Ord for Character {
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        if self.health < other.health {
            Ordering::Less
        } else if self.health > other.health {
            Ordering::Greater
        } else {
            Ordering::Equal
        }
    }
}

impl PartialOrd for Character {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl PartialEq for Character {
    fn eq(&self, other: &Self) -> bool {
        self.health == other.health
    }
}

impl Eq for Character {}

let a = Character { health: 4.5 };
let b = Character { health: f32::NAN };

// Mistake: floating-point values do not form a total order and using the built-in comparison
// operands to implement `Ord` irregardless of that reality does not change it. Use
// `f32::total_cmp` if you need a total order for floating-point values.

// Reflexivity requirement of `Ord` is not given.
assert!(a == a);
assert!(b != b);

// Antisymmetry requirement of `Ord` is not given. Only one of a < c and c < a is allowed to be
// true, not both or neither.
assert_eq!((a < b) as u8 + (b < a) as u8, 0);
use std::cmp::Ordering;

#[derive(Debug)]
struct Character {
    health: u32,
    experience: u32,
}

impl PartialOrd for Character {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for Character {
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        if self.health < 50 {
            self.health.cmp(&other.health)
        } else {
            self.experience.cmp(&other.experience)
        }
    }
}

// For performance reasons implementing `PartialEq` this way is not the idiomatic way, but it
// ensures consistent behavior between `PartialEq`, `PartialOrd` and `Ord` in this example.
impl PartialEq for Character {
    fn eq(&self, other: &Self) -> bool {
        self.cmp(other) == Ordering::Equal
    }
}

impl Eq for Character {}

let a = Character {
    health: 3,
    experience: 5,
};
let b = Character {
    health: 10,
    experience: 77,
};
let c = Character {
    health: 143,
    experience: 2,
};

// Mistake: The implementation of `Ord` compares different fields depending on the value of
// `self.health`, the resulting order is not total.

// Transitivity requirement of `Ord` is not given. If a is smaller than b and b is smaller than
// c, by transitive property a must also be smaller than c.
assert!(a < b && b < c && c < a);

// Antisymmetry requirement of `Ord` is not given. Only one of a < c and c < a is allowed to be
// true, not both or neither.
assert_eq!((a < c) as u8 + (c < a) as u8, 2);

The documentation of PartialOrd contains further examples, for example it’s wrong for PartialOrd and PartialEq to disagree.

Required Methods§

1.0.0 · Source

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other.

By convention, self.cmp(&other) returns the ordering matching the expression self <operator> other if true.

§Examples
use std::cmp::Ordering;

assert_eq!(5.cmp(&10), Ordering::Less);
assert_eq!(10.cmp(&5), Ordering::Greater);
assert_eq!(5.cmp(&5), Ordering::Equal);

Provided Methods§

1.21.0 · Source

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values.

Returns the second argument if the comparison determines them to be equal.

§Examples
assert_eq!(1.max(2), 2);
assert_eq!(2.max(2), 2);
use std::cmp::Ordering;

#[derive(Eq)]
struct Equal(&'static str);

impl PartialEq for Equal {
    fn eq(&self, other: &Self) -> bool { true }
}
impl PartialOrd for Equal {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> { Some(Ordering::Equal) }
}
impl Ord for Equal {
    fn cmp(&self, other: &Self) -> Ordering { Ordering::Equal }
}

assert_eq!(Equal("self").max(Equal("other")).0, "other");
1.21.0 · Source

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values.

Returns the first argument if the comparison determines them to be equal.

§Examples
assert_eq!(1.min(2), 1);
assert_eq!(2.min(2), 2);
use std::cmp::Ordering;

#[derive(Eq)]
struct Equal(&'static str);

impl PartialEq for Equal {
    fn eq(&self, other: &Self) -> bool { true }
}
impl PartialOrd for Equal {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> { Some(Ordering::Equal) }
}
impl Ord for Equal {
    fn cmp(&self, other: &Self) -> Ordering { Ordering::Equal }
}

assert_eq!(Equal("self").min(Equal("other")).0, "self");
1.50.0 · Source

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval.

Returns max if self is greater than max, and min if self is less than min. Otherwise this returns self.

§Panics

Panics if min > max.

§Examples
assert_eq!((-3).clamp(-2, 1), -2);
assert_eq!(0.clamp(-2, 1), 0);
assert_eq!(2.clamp(-2, 1), 1);

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Ord for SectionLevel

Source§

impl Ord for FileState

Source§

impl Ord for CSS

Source§

impl Ord for LogLevel

Source§

impl Ord for AsciiChar

1.34.0 · Source§

impl Ord for Infallible

1.7.0 · Source§

impl Ord for IpAddr

1.0.0 · Source§

impl Ord for SocketAddr

1.0.0 · Source§

impl Ord for Ordering

1.0.0 · Source§

impl Ord for ErrorKind

Source§

impl Ord for Month

Source§

impl Ord for IpAddrRange

Source§

impl Ord for IpNet

Source§

impl Ord for IpSubnets

Source§

impl Ord for log::Level

Source§

impl Ord for log::LevelFilter

1.0.0 · Source§

impl Ord for bool

1.0.0 · Source§

impl Ord for char

1.0.0 · Source§

impl Ord for i8

1.0.0 · Source§

impl Ord for i16

1.0.0 · Source§

impl Ord for i32

1.0.0 · Source§

impl Ord for i64

1.0.0 · Source§

impl Ord for i128

1.0.0 · Source§

impl Ord for isize

Source§

impl Ord for !

1.0.0 · Source§

impl Ord for str

Implements ordering of strings.

Strings are ordered lexicographically by their byte values. This orders Unicode code points based on their positions in the code charts. This is not necessarily the same as “alphabetical” order, which varies by language and locale. Sorting strings according to culturally-accepted standards requires locale-specific data that is outside the scope of the str type.

1.0.0 · Source§

impl Ord for u8

1.0.0 · Source§

impl Ord for u16

1.0.0 · Source§

impl Ord for u32

1.0.0 · Source§

impl Ord for u64

1.0.0 · Source§

impl Ord for u128

1.0.0 · Source§

impl Ord for ()

1.0.0 · Source§

impl Ord for usize

Source§

impl Ord for DocumentRange

Source§

impl Ord for ArchiveId

Source§

impl Ord for NameStep

Source§

impl Ord for QueueId

Source§

impl Ord for ByteOffset

Source§

impl Ord for LSPLineCol

Source§

impl Ord for Delta

Source§

impl Ord for Timestamp

§

impl Ord for Dom

§

impl Ord for HeaderValue

§

impl Ord for StatusCode

§

impl Ord for flams_router_vscode::server_fn::axum_export::http::Version

§

impl Ord for BytesMut

§

impl Ord for NoCustomError

§

impl Ord for flams_router_vscode::server_fn::Bytes

1.0.0 · Source§

impl Ord for TypeId

1.27.0 · Source§

impl Ord for CpuidResult

Source§

impl Ord for ByteStr

1.0.0 · Source§

impl Ord for CStr

1.0.0 · Source§

impl Ord for Error

1.33.0 · Source§

impl Ord for PhantomPinned

1.0.0 · Source§

impl Ord for Ipv4Addr

1.0.0 · Source§

impl Ord for Ipv6Addr

1.0.0 · Source§

impl Ord for SocketAddrV4

1.0.0 · Source§

impl Ord for SocketAddrV6

1.10.0 · Source§

impl Ord for Location<'_>

1.3.0 · Source§

impl Ord for flams_router_vscode::server_fn::inventory::core::time::Duration

Source§

impl Ord for ByteString

1.64.0 · Source§

impl Ord for CString

1.0.0 · Source§

impl Ord for String

Source§

impl Ord for Alignment

1.0.0 · Source§

impl Ord for OsStr

1.0.0 · Source§

impl Ord for OsString

1.0.0 · Source§

impl Ord for Components<'_>

1.0.0 · Source§

impl Ord for Path

1.0.0 · Source§

impl Ord for PathBuf

1.0.0 · Source§

impl Ord for PrefixComponent<'_>

1.8.0 · Source§

impl Ord for std::time::Instant

1.8.0 · Source§

impl Ord for SystemTime

Source§

impl Ord for Months

Source§

impl Ord for NaiveDate

Source§

impl Ord for NaiveDateDaysIterator

Source§

impl Ord for NaiveDateWeeksIterator

Source§

impl Ord for NaiveDateTime

Source§

impl Ord for IsoWeek

Source§

impl Ord for Days

Source§

impl Ord for NaiveTime

Source§

impl Ord for TimeDelta

Source§

impl Ord for WeekdaySet

Source§

impl Ord for Oid

Source§

impl Ord for AttrCheckFlags

Source§

impl Ord for CheckoutNotificationType

Source§

impl Ord for CredentialType

Source§

impl Ord for DiffFlags

Source§

impl Ord for DiffStatsFormat

Source§

impl Ord for IndexAddOption

Source§

impl Ord for IndexEntryExtendedFlag

Source§

impl Ord for IndexEntryFlag

Source§

impl Ord for MergeAnalysis

Source§

impl Ord for MergePreference

Source§

impl Ord for OdbLookupFlags

Source§

impl Ord for PathspecFlags

Source§

impl Ord for ReferenceFormat

Source§

impl Ord for RemoteUpdateFlags

Source§

impl Ord for RepositoryInitMode

Source§

impl Ord for RepositoryOpenFlags

Source§

impl Ord for RevparseMode

Source§

impl Ord for Sort

Source§

impl Ord for StashApplyFlags

Source§

impl Ord for StashFlags

Source§

impl Ord for Status

Source§

impl Ord for SubmoduleStatus

Source§

impl Ord for IndexTime

Source§

impl Ord for git2::time::Time

Source§

impl Ord for Ipv4AddrRange

Source§

impl Ord for Ipv6AddrRange

Source§

impl Ord for Ipv4Net

Source§

impl Ord for Ipv4Subnets

Source§

impl Ord for Ipv6Net

Source§

impl Ord for Ipv6Subnets

Source§

impl Ord for BigInt

Source§

impl Ord for js_sys::Boolean

Source§

impl Ord for JsString

Source§

impl Ord for Mime

Source§

impl Ord for Asn1Integer

Source§

impl Ord for Asn1IntegerRef

Source§

impl Ord for BigNum

Source§

impl Ord for BigNumRef

Source§

impl Ord for CMSOptions

Source§

impl Ord for OcspFlag

Source§

impl Ord for Pkcs7Flags

Source§

impl Ord for ExtensionContext

Source§

impl Ord for ShutdownState

Source§

impl Ord for SslMode

Source§

impl Ord for SslOptions

Source§

impl Ord for SslSessionCacheMode

Source§

impl Ord for SslVerifyMode

Source§

impl Ord for X509

Source§

impl Ord for X509Ref

Source§

impl Ord for X509CheckFlags

Source§

impl Ord for X509VerifyFlags

Source§

impl Ord for LineColumn

Source§

impl Ord for proc_macro2::Ident

Source§

impl Ord for DefaultKey

Source§

impl Ord for KeyData

Source§

impl Ord for Lifetime

Source§

impl Ord for ATerm

Source§

impl Ord for B0

Source§

impl Ord for B1

Source§

impl Ord for Z0

Source§

impl Ord for Equal

Source§

impl Ord for Greater

Source§

impl Ord for Less

Source§

impl Ord for UTerm

Source§

impl Ord for Url

URLs compare like their serialization.

Source§

impl Ord for Braced

Source§

impl Ord for Hyphenated

Source§

impl Ord for Simple

Source§

impl Ord for Urn

Source§

impl Ord for Uuid

§

impl Ord for AccessLevel

§

impl Ord for Algorithm

§

impl Ord for AnyDelimiterCodec

§

impl Ord for ArchivedCString

§

impl Ord for ArchivedDuration

§

impl Ord for ArchivedIpAddr

§

impl Ord for ArchivedIpv4Addr

§

impl Ord for ArchivedIpv6Addr

§

impl Ord for ArchivedOptionNonZeroI8

§

impl Ord for ArchivedOptionNonZeroI16

§

impl Ord for ArchivedOptionNonZeroI32

§

impl Ord for ArchivedOptionNonZeroI64

§

impl Ord for ArchivedOptionNonZeroI128

§

impl Ord for ArchivedOptionNonZeroU8

§

impl Ord for ArchivedOptionNonZeroU16

§

impl Ord for ArchivedOptionNonZeroU32

§

impl Ord for ArchivedOptionNonZeroU64

§

impl Ord for ArchivedOptionNonZeroU128

§

impl Ord for ArchivedSocketAddr

§

impl Ord for ArchivedSocketAddrV4

§

impl Ord for ArchivedSocketAddrV6

§

impl Ord for ArchivedString

§

impl Ord for AssociatedData

§

impl Ord for AttrValueKind

§

impl Ord for Attribute

§

impl Ord for Attribute

§

impl Ord for Attributes

§

impl Ord for AuthUrl

§

impl Ord for BStr

§

impl Ord for BStr

§

impl Ord for Base64

§

impl Ord for Base64Bcrypt

§

impl Ord for Base64Crypt

§

impl Ord for Base64ShaCrypt

§

impl Ord for Base64Unpadded

§

impl Ord for Base64Url

§

impl Ord for Base64UrlUnpadded

§

impl Ord for BidiClass

§

impl Ord for BigEndian

§

impl Ord for BigEndian

§

impl Ord for Blocking

§

impl Ord for Boolean

§

impl Ord for BranchProtectionAccessLevel

§

impl Ord for ByteCount

§

impl Ord for Bytes

§

impl Ord for Bytes

§

impl Ord for BytesCodec

§

impl Ord for CanonicalCombiningClass

§

impl Ord for Cardinality

§

impl Ord for CharULE

§

impl Ord for ClassBytesRange

§

impl Ord for ClassUnicodeRange

§

impl Ord for CodecType

§

impl Ord for ColorScheme

§

impl Ord for ColumnType

§

impl Ord for ContainerExpirationCadence

§

impl Ord for ContainerExpirationKeepN

§

impl Ord for ContainerExpirationOlderThan

§

impl Ord for DataMarkerAttributes

§

impl Ord for DataMarkerId

§

impl Ord for DataMarkerIdHash

§

impl Ord for DataMarkerInfo

§

impl Ord for DataRequestMetadata

§

impl Ord for Date

§

impl Ord for Date

§

impl Ord for DateTime

§

impl Ord for DateTimePrecision

§

impl Ord for Datetime

§

impl Ord for DayTimeDuration

§

impl Ord for Decimal

§

impl Ord for DeviceAuthorizationUrl

§

impl Ord for Direction

§

impl Ord for Direction

§

impl Ord for DocAddress

§

impl Ord for DoctypeIdKind

§

impl Ord for Duration

§

impl Ord for EastAsianWidth

§

impl Ord for EmptyStaticAtomSet

§

impl Ord for Encoding

§

impl Ord for Encoding

§

impl Ord for EndUserVerificationUrl

§

impl Ord for Event

§

impl Ord for EventKind

§

impl Ord for ExtensionType

§

impl Ord for Facet

§

impl Ord for Field

§

impl Ord for FieldMetadata

§

impl Ord for Fields

§

impl Ord for FileTime

§

impl Ord for FmtSpan

§

impl Ord for GeneralCategory

§

impl Ord for GeneralCategoryOutOfBoundsError

§

impl Ord for GeneralCategoryULE

§

impl Ord for GraphemeClusterBreak

§

impl Ord for GridAutoFlow

§

impl Ord for GroupAccessLevel

§

impl Ord for HangulSyllableType

§

impl Ord for HttpDate

§

impl Ord for HumanAccessLevel

§

impl Ord for ImpersonationTokenScope

§

impl Ord for Index8

§

impl Ord for Index16

§

impl Ord for Index32

§

impl Ord for IndexRecordOption

§

impl Ord for IndexedValue

§

impl Ord for IndicSyllabicCategory

§

impl Ord for InsertError

§

impl Ord for Instant

§

impl Ord for Integer

§

impl Ord for IntegerRadix

§

impl Ord for Interest

§

impl Ord for IntrospectionUrl

§

impl Ord for JobScope

§

impl Ord for JoiningType

§

impl Ord for Key

§

impl Ord for Key

§

impl Ord for KeyId

§

impl Ord for Keywords

§

impl Ord for Language

§

impl Ord for LazyStateID

§

impl Ord for Level

§

impl Ord for LevelFilter

§

impl Ord for LineBreak

§

impl Ord for LineEnding

§

impl Ord for LinesCodec

§

impl Ord for Literal

§

impl Ord for LittleEndian

§

impl Ord for LittleEndian

§

impl Ord for LocalNameStaticSet

§

impl Ord for Meaning

§

impl Ord for NamedNode

§

impl Ord for NamespaceStaticSet

§

impl Ord for NonMaxUsize

§

impl Ord for Offset

§

impl Ord for OffsetDateTime

§

impl Ord for Opcode

§

impl Ord for Other

§

impl Ord for Output

§

impl Ord for PatternID

§

impl Ord for PatternID

§

impl Ord for PersonalAccessTokenCreateScope

§

impl Ord for PersonalAccessTokenScope

§

impl Ord for Position

§

impl Ord for PotentialCodePoint

§

impl Ord for PotentialUtf8

§

impl Ord for PotentialUtf16

§

impl Ord for PreTokenizedString

§

impl Ord for PrefixStaticSet

§

impl Ord for PrimitiveDateTime

§

impl Ord for Private

§

impl Ord for ProjectAccessLevel

§

impl Ord for ProjectAccessTokenAccessLevel

§

impl Ord for ProjectAccessTokenScope

§

impl Ord for ProtectedAccessLevel

§

impl Ord for ProtectedAccessLevelWithAccess

§

impl Ord for QualName

§

impl Ord for RawKind

§

impl Ord for ReactiveNodeState

§

impl Ord for Ready

§

impl Ord for ReasonPhrase

§

impl Ord for RedirectUrl

§

impl Ord for Region

§

impl Ord for RevocationUrl

§

impl Ord for ScalarKind

§

impl Ord for Script

§

impl Ord for Script

§

impl Ord for ScriptEscapeKind

§

impl Ord for SearcherGeneration

§

impl Ord for SegmentId

§

impl Ord for SentenceBreak

§

impl Ord for SigId

§

impl Ord for SmallIndex

§

impl Ord for SocketAddrAny

§

impl Ord for SocketAddrUnix

§

impl Ord for SocketAddrXdp

§

impl Ord for SocketAddrXdpFlags

§

impl Ord for SourcePosition

§

impl Ord for Span

§

impl Ord for Span

§

impl Ord for SsrMode

§

impl Ord for State

§

impl Ord for State

§

impl Ord for StateID

§

impl Ord for StateID

§

impl Ord for StateId

§

impl Ord for StaticRoute

§

impl Ord for SubdivisionId

§

impl Ord for SubdivisionSuffix

§

impl Ord for Subtag

§

impl Ord for Subtag

§

impl Ord for TextDecorationLine

§

impl Ord for TextTransformOther

§

impl Ord for Time

§

impl Ord for Time

§

impl Ord for Timespec

§

impl Ord for TimezoneOffset

§

impl Ord for Token

§

impl Ord for Token

§

impl Ord for TokenKind

§

impl Ord for TokenUrl

§

impl Ord for Type

§

impl Ord for Unit

§

impl Ord for UnixTime

§

impl Ord for UriTemplateStr

§

impl Ord for UriTemplateString

§

impl Ord for UtcDateTime

§

impl Ord for UtcOffset

§

impl Ord for Utf8Bytes

§

impl Ord for Utf8Path

§

impl Ord for Utf8PathBuf

§

impl Ord for Utf8Range

§

impl Ord for Utf8Sequence

§

impl Ord for Value

§

impl Ord for Value

§

impl Ord for Variable

§

impl Ord for Variant

§

impl Ord for Variants

§

impl Ord for VendorPrefix

§

impl Ord for Version

§

impl Ord for Version

§

impl Ord for VerticalOrientation

§

impl Ord for WordBreak

§

impl Ord for YearMonthDuration

1.0.0 · Source§

impl<'a> Ord for Component<'a>

1.0.0 · Source§

impl<'a> Ord for std::path::Prefix<'a>

Source§

impl<'a> Ord for PhantomContravariantLifetime<'a>

Source§

impl<'a> Ord for PhantomCovariantLifetime<'a>

Source§

impl<'a> Ord for PhantomInvariantLifetime<'a>

Source§

impl<'a> Ord for TreeEntry<'a>

Source§

impl<'a> Ord for Metadata<'a>

Source§

impl<'a> Ord for MetadataBuilder<'a>

Source§

impl<'a> Ord for Name<'a>

§

impl<'a> Ord for Codepoint<'a>

§

impl<'a> Ord for CowArcStr<'a>

§

impl<'a> Ord for CowRcStr<'a>

§

impl<'a> Ord for Ident<'a>

§

impl<'a> Ord for LocalName<'a>

§

impl<'a> Ord for NamedNodeRef<'a>

§

impl<'a> Ord for Namespace<'a>

§

impl<'a> Ord for NonBlocking<'a>

§

impl<'a> Ord for Prefix<'a>

§

impl<'a> Ord for PrefixDeclaration<'a>

§

impl<'a> Ord for QName<'a>

§

impl<'a> Ord for Utf8Component<'a>

§

impl<'a> Ord for Utf8Components<'a>

§

impl<'a> Ord for Utf8Prefix<'a>

§

impl<'a> Ord for Utf8PrefixComponent<'a>

§

impl<'a> Ord for Value<'a>

§

impl<'a> Ord for VariableRef<'a>

§

impl<'a, T> Ord for ZeroVec<'a, T>
where T: AsULE + Ord,

§

impl<'a, T, F> Ord for VarZeroVec<'a, T, F>
where T: VarULE + Ord + ?Sized, F: VarZeroVecFormat,

§

impl<'a, V> Ord for VarZeroCow<'a, V>
where V: VarULE + Ord + ?Sized,

§

impl<'i> Ord for CSSString<'i>

Source§

impl<'k> Ord for log::kv::key::Key<'k>

§

impl<'k, 'v> Ord for Params<'k, 'v>

Source§

impl<'repo> Ord for Reference<'repo>

1.0.0 · Source§

impl<A> Ord for &A
where A: Ord + ?Sized,

1.0.0 · Source§

impl<A> Ord for &mut A
where A: Ord + ?Sized,

Source§

impl<A> Ord for Interned<Arc<A>>
where A: ?Sized,

§

impl<A> Ord for SmallVec<A>
where A: Array, <A as Array>::Item: Ord,

§

impl<A, B> Ord for Tuple2ULE<A, B>
where A: Ord + ULE, B: Ord + ULE,

§

impl<A, B> Ord for VarTuple<A, B>
where A: Ord, B: Ord,

§

impl<A, B, C> Ord for Tuple3ULE<A, B, C>
where A: Ord + ULE, B: Ord + ULE, C: Ord + ULE,

§

impl<A, B, C, D> Ord for Tuple4ULE<A, B, C, D>
where A: Ord + ULE, B: Ord + ULE, C: Ord + ULE, D: Ord + ULE,

§

impl<A, B, C, D, E> Ord for Tuple5ULE<A, B, C, D, E>
where A: Ord + ULE, B: Ord + ULE, C: Ord + ULE, D: Ord + ULE, E: Ord + ULE,

§

impl<A, B, C, D, E, F> Ord for Tuple6ULE<A, B, C, D, E, F>
where A: Ord + ULE, B: Ord + ULE, C: Ord + ULE, D: Ord + ULE, E: Ord + ULE, F: Ord + ULE,

§

impl<A, B, C, D, E, F, Format> Ord for Tuple6VarULE<A, B, C, D, E, F, Format>
where A: Ord + VarULE + ?Sized, B: Ord + VarULE + ?Sized, C: Ord + VarULE + ?Sized, D: Ord + VarULE + ?Sized, E: Ord + VarULE + ?Sized, F: Ord + VarULE + ?Sized, Format: VarZeroVecFormat,

§

impl<A, B, C, D, E, Format> Ord for Tuple5VarULE<A, B, C, D, E, Format>
where A: Ord + VarULE + ?Sized, B: Ord + VarULE + ?Sized, C: Ord + VarULE + ?Sized, D: Ord + VarULE + ?Sized, E: Ord + VarULE + ?Sized, Format: VarZeroVecFormat,

§

impl<A, B, C, D, Format> Ord for Tuple4VarULE<A, B, C, D, Format>
where A: Ord + VarULE + ?Sized, B: Ord + VarULE + ?Sized, C: Ord + VarULE + ?Sized, D: Ord + VarULE + ?Sized, Format: VarZeroVecFormat,

§

impl<A, B, C, Format> Ord for Tuple3VarULE<A, B, C, Format>
where A: Ord + VarULE + ?Sized, B: Ord + VarULE + ?Sized, C: Ord + VarULE + ?Sized, Format: VarZeroVecFormat,

§

impl<A, B, Format> Ord for Tuple2VarULE<A, B, Format>
where A: Ord + VarULE + ?Sized, B: Ord + VarULE + ?Sized, Format: VarZeroVecFormat,

§

impl<A, V> Ord for VarTupleULE<A, V>
where A: Ord + AsULE, V: Ord + VarULE + ?Sized, <A as AsULE>::ULE: Ord,

1.0.0 · Source§

impl<B> Ord for Cow<'_, B>
where B: Ord + ToOwned + ?Sized,

§

impl<B> Ord for Term<B>
where B: AsRef<[u8]>,

§

impl<C> Ord for AnyWalker<C>
where C: Ord,

Source§

impl<Dyn> Ord for core::ptr::metadata::DynMetadata<Dyn>
where Dyn: ?Sized,

§

impl<Dyn> Ord for DynMetadata<Dyn>
where Dyn: ?Sized,

1.4.0 · Source§

impl<F> Ord for F
where F: FnPtr,

§

impl<F, A> Ord for Tendril<F, A>
where F: SliceFormat, <F as SliceFormat>::Slice: Ord, A: Atomicity,

§

impl<H, T> Ord for HeaderSlice<H, T>
where H: Ord, T: Ord + ?Sized,

§

impl<H, T> Ord for HeaderSlice<HeaderWithLength<H>, T>
where H: Ord, T: Ord + ?Sized,

§

impl<H, T> Ord for ThinArc<H, T>
where H: Ord, T: Ord,

§

impl<I> Ord for LocatingSlice<I>
where I: Ord,

§

impl<I> Ord for LocatingSlice<I>
where I: Ord,

§

impl<I> Ord for Partial<I>
where I: Ord,

§

impl<I> Ord for Partial<I>
where I: Ord,

§

impl<K> Ord for ArchivedBTreeSet<K>
where K: Ord,

§

impl<K, V> Ord for ArchivedBTreeMap<K, V>
where K: Ord, V: Ord,

§

impl<K, V> Ord for Slice<K, V>
where K: Ord, V: Ord,

1.0.0 · Source§

impl<K, V, A> Ord for BTreeMap<K, V, A>
where K: Ord, V: Ord, A: Allocator + Clone,

§

impl<K, V, S> Ord for LinkedHashMap<K, V, S>
where K: Hash + Eq + Ord, V: Ord, S: BuildHasher,

§

impl<K, V, S> Ord for LiteMap<K, V, S>
where K: Ord + ?Sized, V: Ord + ?Sized, S: Ord,

Source§

impl<L, R> Ord for Either<L, R>
where L: Ord, R: Ord,

§

impl<O> Ord for I16<O>
where O: ByteOrder,

§

impl<O> Ord for I32<O>
where O: ByteOrder,

§

impl<O> Ord for I64<O>
where O: ByteOrder,

§

impl<O> Ord for I128<O>
where O: ByteOrder,

§

impl<O> Ord for Isize<O>
where O: ByteOrder,

§

impl<O> Ord for U16<O>
where O: ByteOrder,

§

impl<O> Ord for U32<O>
where O: ByteOrder,

§

impl<O> Ord for U64<O>
where O: ByteOrder,

§

impl<O> Ord for U128<O>
where O: ByteOrder,

§

impl<O> Ord for Usize<O>
where O: ByteOrder,

Source§

impl<P> Ord for Interned<P>
where P: Ptr,

1.41.0 · Source§

impl<Ptr> Ord for Pin<Ptr>
where Ptr: Deref, <Ptr as Deref>::Target: Ord,

Source§

impl<S> Ord for Host<S>
where S: Ord,

§

impl<S> Ord for RiAbsoluteStr<S>
where S: Spec,

§

impl<S> Ord for RiAbsoluteString<S>
where S: Spec,

§

impl<S> Ord for RiFragmentStr<S>
where S: Spec,

§

impl<S> Ord for RiFragmentString<S>
where S: Spec,

§

impl<S> Ord for RiQueryStr<S>
where S: Spec,

§

impl<S> Ord for RiQueryString<S>
where S: Spec,

§

impl<S> Ord for RiReferenceStr<S>
where S: Spec,

§

impl<S> Ord for RiReferenceString<S>
where S: Spec,

§

impl<S> Ord for RiRelativeStr<S>
where S: Spec,

§

impl<S> Ord for RiRelativeString<S>
where S: Spec,

§

impl<S> Ord for RiStr<S>
where S: Spec,

§

impl<S> Ord for RiString<S>
where S: Spec,

§

impl<Static> Ord for Atom<Static>
where Static: StaticAtomSet,

§

impl<Storage> Ord for __BindgenBitfieldUnit<Storage>
where Storage: Ord,

§

impl<Storage> Ord for __BindgenBitfieldUnit<Storage>
where Storage: Ord,

§

impl<Storage> Ord for __BindgenBitfieldUnit<Storage>
where Storage: Ord,

§

impl<Str> Ord for Encoded<Str>
where Str: Ord,

§

impl<T> Ord for Oco<'_, T>
where T: Ord + ToOwned + ?Sized,

1.0.0 · Source§

impl<T> Ord for Option<T>
where T: Ord,

1.36.0 · Source§

impl<T> Ord for Poll<T>
where T: Ord,

1.0.0 · Source§

impl<T> Ord for *const T
where T: ?Sized,

Pointer comparison is by address, as produced by the [<*const T>::addr](pointer::addr) method.

1.0.0 · Source§

impl<T> Ord for *mut T
where T: ?Sized,

Pointer comparison is by address, as produced by the <*mut T>::addr method.

1.0.0 · Source§

impl<T> Ord for [T]
where T: Ord,

Implements comparison of slices lexicographically.

1.0.0 · Source§

impl<T> Ord for (T₁, T₂, …, Tₙ)
where T: Ord,

This trait is implemented for tuples up to twelve items long.

§

impl<T> Ord for View<T>
where T: Ord,

1.10.0 · Source§

impl<T> Ord for Cell<T>
where T: Ord + Copy,

1.10.0 · Source§

impl<T> Ord for RefCell<T>
where T: Ord + ?Sized,

Source§

impl<T> Ord for PhantomContravariant<T>
where T: ?Sized,

Source§

impl<T> Ord for PhantomCovariant<T>
where T: ?Sized,

1.0.0 · Source§

impl<T> Ord for PhantomData<T>
where T: ?Sized,

Source§

impl<T> Ord for PhantomInvariant<T>
where T: ?Sized,

1.20.0 · Source§

impl<T> Ord for ManuallyDrop<T>
where T: Ord + ?Sized,

1.28.0 · Source§

impl<T> Ord for NonZero<T>

1.74.0 · Source§

impl<T> Ord for Saturating<T>
where T: Ord,

1.0.0 · Source§

impl<T> Ord for Wrapping<T>
where T: Ord,

1.25.0 · Source§

impl<T> Ord for NonNull<T>
where T: ?Sized,

Source§

impl<T> Ord for BorrowCompat<T>
where T: Ord,

Source§

impl<T> Ord for Compat<T>
where T: Ord,

1.19.0 · Source§

impl<T> Ord for Reverse<T>
where T: Ord,

§

impl<T> Ord for AllowStdIo<T>
where T: Ord,

§

impl<T> Ord for Arc<T>
where T: Ord + ?Sized,

§

impl<T> Ord for ArchivedBox<T>
where T: ArchivePointee + Ord + ?Sized,

§

impl<T> Ord for ArchivedOption<T>
where T: Ord,

§

impl<T> Ord for ArchivedOptionBox<T>
where T: ArchivePointee + Ord + ?Sized,

§

impl<T> Ord for ArchivedVec<T>
where T: Ord,

§

impl<T> Ord for Ascii<T>
where T: AsRef<str>,

§

impl<T> Ord for Attr<T>
where T: Ord,

§

impl<T> Ord for Constant<T>
where T: Ord,

§

impl<T> Ord for Iri<T>
where T: Ord,

§

impl<T> Ord for IriRef<T>
where T: Ord,

§

impl<T> Ord for Json<T>
where T: Ord + ?Sized,

§

impl<T> Ord for LanguageTag<T>
where T: Ord,

§

impl<T> Ord for ProtectedAccess<T>
where T: Ord,

§

impl<T> Ord for ProtectedAccessPush<T>
where T: Ord,

§

impl<T> Ord for RawArchivedVec<T>
where T: Ord,

§

impl<T> Ord for RuleResult<T>
where T: Ord,

§

impl<T> Ord for Shared<'_, T>
where T: Pointable + ?Sized,

§

impl<T> Ord for Slice<T>
where T: Ord,

§

impl<T> Ord for Spanned<T>
where T: Ord,

§

impl<T> Ord for Text<T>
where T: Ord,

§

impl<T> Ord for TryWriteableInfallibleAsWriteable<T>
where T: Ord,

§

impl<T> Ord for Unalign<T>
where T: Unaligned + Ord,

§

impl<T> Ord for UniCase<T>
where T: AsRef<str>,

§

impl<T> Ord for WriteableAsTryWriteableInfallible<T>
where T: Ord,

§

impl<T> Ord for ZeroSlice<T>
where T: AsULE + Ord,

1.0.0 · Source§

impl<T, A> Ord for alloc::boxed::Box<T, A>
where T: Ord + ?Sized, A: Allocator,

1.0.0 · Source§

impl<T, A> Ord for BTreeSet<T, A>
where T: Ord, A: Allocator + Clone,

1.0.0 · Source§

impl<T, A> Ord for LinkedList<T, A>
where T: Ord, A: Allocator,

1.0.0 · Source§

impl<T, A> Ord for VecDeque<T, A>
where T: Ord, A: Allocator,

1.0.0 · Source§

impl<T, A> Ord for Rc<T, A>
where T: Ord + ?Sized, A: Allocator,

Source§

impl<T, A> Ord for UniqueRc<T, A>
where T: Ord + ?Sized, A: Allocator,

1.0.0 · Source§

impl<T, A> Ord for alloc::sync::Arc<T, A>
where T: Ord + ?Sized, A: Allocator,

Source§

impl<T, A> Ord for UniqueArc<T, A>
where T: Ord + ?Sized, A: Allocator,

1.0.0 · Source§

impl<T, A> Ord for alloc::vec::Vec<T, A>
where T: Ord, A: Allocator,

Implements ordering of vectors, lexicographically.

§

impl<T, A> Ord for Box<T, A>
where T: Ord + ?Sized, A: Allocator,

§

impl<T, A> Ord for Vec<T, A>
where T: Ord, A: Allocator,

Implements ordering of vectors, lexicographically.

§

impl<T, B> Ord for Ref<B, T>
where B: ByteSlice, T: FromBytes + Ord + KnownLayout + Immutable + ?Sized,

§

impl<T, D, const R: bool> Ord for ComparableDoc<T, D, R>
where T: PartialOrd, D: PartialOrd,

1.0.0 · Source§

impl<T, E> Ord for Result<T, E>
where T: Ord, E: Ord,

§

impl<T, E> Ord for ArchivedResult<T, E>
where T: Ord, E: Ord,

§

impl<T, F> Ord for ArchivedRc<T, F>
where T: ArchivePointee + Ord + ?Sized,

§

impl<T, F> Ord for VarZeroSlice<T, F>
where T: VarULE + Ord + ?Sized, F: VarZeroVecFormat,

§

impl<T, N> Ord for GenericArray<T, N>
where T: Ord, N: ArrayLength<T>,

§

impl<T, S> Ord for Checkpoint<T, S>
where T: Ord,

§

impl<T, S> Ord for Checkpoint<T, S>
where T: Ord,

§

impl<T, Ser> Ord for SharedValue<T, Ser>
where T: Ord,

1.0.0 · Source§

impl<T, const N: usize> Ord for [T; N]
where T: Ord,

Implements comparison of arrays lexicographically.

Source§

impl<T, const N: usize> Ord for Simd<T, N>

Lexicographic order. For the SIMD elementwise minimum and maximum, use simd_min and simd_max instead.

§

impl<T, const N: usize> Ord for SmallVec<T, N>
where T: Ord,

Source§

impl<Tz> Ord for chrono::date::Date<Tz>
where Tz: TimeZone,

Source§

impl<Tz> Ord for chrono::datetime::DateTime<Tz>
where Tz: TimeZone,

Source§

impl<U> Ord for NInt<U>
where U: Ord + Unsigned + NonZero,

Source§

impl<U> Ord for PInt<U>
where U: Ord + Unsigned + NonZero,

§

impl<U> Ord for OptionVarULE<U>
where U: VarULE + Ord + ?Sized,

Source§

impl<U, B> Ord for UInt<U, B>
where U: Ord, B: Ord,

§

impl<U, const N: usize> Ord for NichedOption<U, N>
where U: Ord,

Source§

impl<V, A> Ord for TArr<V, A>
where V: Ord, A: Ord,

Source§

impl<Y, R> Ord for CoroutineState<Y, R>
where Y: Ord, R: Ord,

§

impl<const MIN: i8, const MAX: i8> Ord for OptionRangedI8<MIN, MAX>

§

impl<const MIN: i8, const MAX: i8> Ord for RangedI8<MIN, MAX>

§

impl<const MIN: i16, const MAX: i16> Ord for OptionRangedI16<MIN, MAX>

§

impl<const MIN: i16, const MAX: i16> Ord for RangedI16<MIN, MAX>

§

impl<const MIN: i32, const MAX: i32> Ord for OptionRangedI32<MIN, MAX>

§

impl<const MIN: i32, const MAX: i32> Ord for RangedI32<MIN, MAX>

§

impl<const MIN: i64, const MAX: i64> Ord for OptionRangedI64<MIN, MAX>

§

impl<const MIN: i64, const MAX: i64> Ord for RangedI64<MIN, MAX>

§

impl<const MIN: i128, const MAX: i128> Ord for OptionRangedI128<MIN, MAX>

§

impl<const MIN: i128, const MAX: i128> Ord for RangedI128<MIN, MAX>

§

impl<const MIN: isize, const MAX: isize> Ord for OptionRangedIsize<MIN, MAX>

§

impl<const MIN: isize, const MAX: isize> Ord for RangedIsize<MIN, MAX>

§

impl<const MIN: u8, const MAX: u8> Ord for OptionRangedU8<MIN, MAX>

§

impl<const MIN: u8, const MAX: u8> Ord for RangedU8<MIN, MAX>

§

impl<const MIN: u16, const MAX: u16> Ord for OptionRangedU16<MIN, MAX>

§

impl<const MIN: u16, const MAX: u16> Ord for RangedU16<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> Ord for OptionRangedU32<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> Ord for RangedU32<MIN, MAX>

§

impl<const MIN: u64, const MAX: u64> Ord for OptionRangedU64<MIN, MAX>

§

impl<const MIN: u64, const MAX: u64> Ord for RangedU64<MIN, MAX>

§

impl<const MIN: u128, const MAX: u128> Ord for OptionRangedU128<MIN, MAX>

§

impl<const MIN: u128, const MAX: u128> Ord for RangedU128<MIN, MAX>

§

impl<const MIN: usize, const MAX: usize> Ord for OptionRangedUsize<MIN, MAX>

§

impl<const MIN: usize, const MAX: usize> Ord for RangedUsize<MIN, MAX>

§

impl<const N: usize> Ord for RawBytesULE<N>

§

impl<const N: usize> Ord for TinyAsciiStr<N>

§

impl<const N: usize> Ord for UnvalidatedTinyAsciiStr<N>

§

impl<const SIZE: usize> Ord for WriteBuffer<SIZE>