Trait nom::lib::std::prelude::v1::rust_2015::Ord1.0.0[][src]

pub trait Ord: Eq + PartialOrd<Self> {
    fn cmp(&self, other: &Self) -> Ordering;

    fn max(self, other: Self) -> Self { ... }
fn min(self, other: Self) -> Self { ... }
fn clamp(self, min: Self, max: Self) -> Self { ... } }
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).

It’s easy to accidentally make cmp and partial_cmp disagree by deriving some of the traits and manually implementing others.

Corollaries

From the above and the requirements of PartialOrd, it follows that < defines a strict total order. This means 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 >.

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 by their top-to-bottom discriminant order. This means variants at the top are less than variants at the bottom. Here’s an example:

#[derive(PartialEq, PartialOrd)]
enum Size {
    Small,
    Large,
}

assert!(Size::Small < Size::Large);

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 sequence 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 and Eq (which requires PartialEq).

Then you must define an implementation for cmp. You may find it useful to use cmp on your type’s fields.

Here’s an example where you want to sort people by height only, disregarding id and name:

use std::cmp::Ordering;

#[derive(Eq)]
struct Person {
    id: u32,
    name: String,
    height: u32,
}

impl Ord for Person {
    fn cmp(&self, other: &Self) -> Ordering {
        self.height.cmp(&other.height)
    }
}

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

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

Required methods

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

Compares and returns the maximum of two values.

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

Examples
assert_eq!(2, 1.max(2));
assert_eq!(2, 2.max(2));

Compares and returns the minimum of two values.

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

Examples
assert_eq!(1, 1.min(2));
assert_eq!(2, 2.min(2));

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!((-3).clamp(-2, 1) == -2);
assert!(0.clamp(-2, 1) == 0);
assert!(2.clamp(-2, 1) == 1);

Implementations on Foreign Types

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.

Implements comparison of vectors lexicographically.

Panics

Panics if the value in either RefCell is currently borrowed.

Implements comparison of arrays lexicographically.

Comparison for two Arcs.

The two are compared by calling cmp() on their inner values.

Examples
use std::sync::Arc;
use std::cmp::Ordering;

let five = Arc::new(5);

assert_eq!(Ordering::Less, five.cmp(&Arc::new(6)));

Comparison for two Rcs.

The two are compared by calling cmp() on their inner values.

Examples
use std::rc::Rc;
use std::cmp::Ordering;

let five = Rc::new(5);

assert_eq!(Ordering::Less, five.cmp(&Rc::new(6)));

Implementors

Implements ordering of vectors, lexicographically.

impl<A> Ord for ArrayString<A> where
    A: Array<Item = u8> + Copy

impl<T: Ord> Ord for CapacityError<T>

impl<A: Array> Ord for ArrayVec<A> where
    A::Item: Ord

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

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

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

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

impl Ord for Utf8PathBuf

impl Ord for Utf8Path

impl Ord for PackageId

impl Ord for CfgExpr

impl Ord for Cfg

impl Ord for Platform

impl Ord for Func

impl Ord for Triple

impl Ord for Arch

impl Ord for Vendor

impl Ord for Os

impl Ord for Family

impl Ord for Env

impl Ord for Endian

impl Ord for TargetInfo

impl Ord for NaiveDate

impl Ord for IsoWeek

impl Ord for NaiveTime

impl<Tz: TimeZone> Ord for Date<Tz>

impl<Tz: TimeZone> Ord for DateTime<Tz>

impl<'help> Ord for Arg<'help>

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

impl<T: Ord + ?Sized> Ord for DebugIgnore<T>

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

impl Ord for FixedBitSet

impl Ord for Register

impl<T: Ord> Ord for DebugInfoOffset<T>

impl<T: Ord> Ord for DebugTypesOffset<T>

impl<T: Ord> Ord for UnitSectionOffset<T>

impl Ord for SectionId

impl Ord for DwSect

impl Ord for DwSectV2

impl Ord for DwUt

impl Ord for DwCfa

impl Ord for DwChildren

impl Ord for DwTag

impl Ord for DwAt

impl Ord for DwForm

impl Ord for DwAte

impl Ord for DwLle

impl Ord for DwDs

impl Ord for DwEnd

impl Ord for DwAccess

impl Ord for DwVis

impl Ord for DwVirtuality

impl Ord for DwLang

impl Ord for DwAddr

impl Ord for DwId

impl Ord for DwCc

impl Ord for DwInl

impl Ord for DwOrd

impl Ord for DwDsc

impl Ord for DwIdx

impl Ord for DwDefaulted

impl Ord for DwLns

impl Ord for DwLne

impl Ord for DwLnct

impl Ord for DwMacro

impl Ord for DwRle

impl Ord for DwOp

impl Ord for DwEhPe

impl Ord for ArangeEntry

impl Ord for ColumnType

impl<T: Ord> Ord for UnitOffset<T>

impl<'g> Ord for BuildTargetId<'g>

impl<'g> Ord for BuildTargetKind<'g>

impl<'g> Ord for FeatureId<'g>

impl Ord for FeatureType

impl Ord for PackageId

impl Ord for ErrorCode

impl Ord for Error

impl Ord for Level

impl Ord for LevelFilter

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

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

impl Ord for StatusLevel

impl Ord for CancelReason

impl Ord for AtFlags

impl Ord for OFlag

impl Ord for RenameFlags

impl Ord for SealFlag

impl Ord for FdFlag

impl Ord for SpliceFFlags

impl Ord for MsFlags

impl Ord for MntFlags

impl Ord for MQ_OFlag

impl Ord for FdFlag

impl Ord for PollFlags

impl Ord for CloneFlags

impl Ord for AioFsyncMode

impl Ord for LioOpcode

impl Ord for LioMode

impl Ord for EpollFlags

impl Ord for EfdFlags

impl Ord for ProtFlags

impl Ord for MapFlags

impl Ord for MRemapFlags

impl Ord for MmapAdvise

impl Ord for MsFlags

impl Ord for Persona

impl Ord for Request

impl Ord for Event

impl Ord for Options

impl Ord for QuotaType

impl Ord for QuotaFmt

impl Ord for RebootMode

impl Ord for Resource

impl Ord for Signal

impl Ord for SaFlags

impl Ord for SigmaskHow

impl Ord for SfdFlags

impl Ord for SockFlag

impl Ord for MsgFlags

impl Ord for SFlag

impl Ord for Mode

impl Ord for FsFlags

impl Ord for BaudRate

impl Ord for SetArg

impl Ord for FlushArg

impl Ord for FlowArg

impl Ord for InputFlags

impl Ord for OutputFlags

impl Ord for ControlFlags

impl Ord for LocalFlags

impl Ord for TimeSpec

impl Ord for TimeVal

impl Ord for WaitPidFlag

impl Ord for InitFlags

impl Ord for ClockId

impl Ord for TimerFlags

impl Ord for ClockId

impl Ord for Pid

impl Ord for AccessFlags

impl<E: Ord + Endian> Ord for U16Bytes<E>

impl<E: Ord + Endian> Ord for U32Bytes<E>

impl<E: Ord + Endian> Ord for U64Bytes<E>

impl<E: Ord + Endian> Ord for I16Bytes<E>

impl<E: Ord + Endian> Ord for I32Bytes<E>

impl<E: Ord + Endian> Ord for I64Bytes<E>

impl Ord for RawOsStr

impl Ord for RawOsString

impl Ord for Time

impl<Ix: Ord> Ord for EdgeIndex<Ix> where
    Ix: IndexType

impl<'a, E: Ord, Ix: Ord + IndexType> Ord for EdgeReference<'a, E, Ix>

impl<Ix: Ord> Ord for NodeIndex<Ix>

impl<Ix: Ord> Ord for EdgeIndex<Ix>

impl Ord for Direction

impl Ord for Ident

impl Ord for Span

impl Ord for Position

impl Ord for Literal

impl Ord for Utf8Sequence

impl Ord for Utf8Range

impl Ord for Prerelease

impl Ord for Version

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

impl Ord for Lifetime

impl Ord for Platform

impl Ord for Triple

impl Ord for Duration

impl Ord for Timespec

impl Ord for SteadyTime

impl Ord for Tm

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