1.0.0[][src]Trait nom::lib::std::prelude::v1::v1::Ord

#[lang = "ord"]
pub trait Ord: Eq + PartialOrd<Self> { fn cmp(&self, other: &Self) -> Ordering; default fn max(self, other: Self) -> Self { ... }
default fn min(self, other: Self) -> Self { ... }
default fn clamp(self, min: Self, max: Self) -> Self { ... } }

Trait for types that form a total order.

An order is a total order if it is (for all a, b and c):

  • total and antisymmetric: exactly one of a < b, a == b or a > b is true; and
  • 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 declaration order.

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.

Implementations of PartialEq, PartialOrd, and Ord must agree with each other. That is, a.cmp(b) == Ordering::Equal if and only if a == b and Some(a.cmp(b)) == a.partial_cmp(b) for all a and b. It's easy to accidentally make them disagree by deriving some of the traits and manually implementing others.

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

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);
Loading content...

Provided methods

default fn max(self, other: Self) -> Self
1.21.0

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));

default fn min(self, other: Self) -> Self
1.21.0

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));

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

🔬 This is a nightly-only experimental API. (clamp)

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

#![feature(clamp)]

assert!((-3).clamp(-2, 1) == -2);
assert!(0.clamp(-2, 1) == 0);
assert!(2.clamp(-2, 1) == 1);
Loading content...

Implementations on Foreign Types

impl Ord for Ipv6Addr[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'a> Ord for Prefix<'a>[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for PathBuf[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for SystemTime[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'_> Ord for PrefixComponent<'_>[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Instant[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for OsString[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for CStr[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Path[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Ipv4Addr[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for ErrorKind[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'a> Ord for Component<'a>[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for CString[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for OsStr[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'_> Ord for Components<'_>[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for IpAddr[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 30] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for *const T where
    T: ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for unsafe fn(A, B, C, D, E, F, G) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret> Ord for unsafe fn() -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for unsafe extern "C" fn(A, B, C, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 2] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for *mut T where
    T: ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroU64[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A> Ord for (A,) where
    A: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for unsafe fn(A, B, C, D) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for unsafe fn(A, B, C, D, E) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for ()[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for str[src]

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.

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for unsafe extern "C" fn(A, B, C) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for RefCell<T> where
    T: Ord + ?Sized
[src]

fn cmp(&self, other: &RefCell<T>) -> Ordering[src]

Panics

Panics if the value in either RefCell is currently borrowed.

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for i128[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroU32[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 0] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E> Ord for (A, B, C, D, E) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret> Ord for fn() -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 26] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for ![src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for i16[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 3] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for fn(A, B) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 21] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for unsafe extern "C" fn(A, B, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G, H, I> Ord for (A, B, C, D, E, F, G, H, I) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord,
    H: Ord,
    I: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for extern "C" fn(A, B, C, D, E, F, G) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 28] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Wrapping<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 24] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 13] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Cell<T> where
    T: Copy + Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G, H> Ord for (A, B, C, D, E, F, G, H) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord,
    H: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D> Ord for (A, B, C, D) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for extern "C" fn(A, B, C, D, E, F, G, H) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for unsafe extern "C" fn(A, B, C, D, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for extern "C" fn(A, B, C, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for fn(A, B, C) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 22] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for fn(A, B, C, D) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroI8[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroU128[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 1] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 12] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for unsafe fn(A, B, C) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for fn(A, B, C, D, E, F, G) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroI64[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret> Ord for unsafe extern "C" fn() -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 29] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 17] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G, H, I, J> Ord for (A, B, C, D, E, F, G, H, I, J) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord,
    H: Ord,
    I: Ord,
    J: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for usize[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 14] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret> Ord for extern "C" fn() -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for unsafe extern "C" fn(A, B, C, D, E) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for PhantomData<T> where
    T: ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for unsafe extern "C" fn(A, B, C, D, E, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroU16[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for extern "C" fn(A, B) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for u128[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for extern "C" fn(A, B, C, D, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for fn(A, B, C, D, E, F, G, H) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroI128[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroIsize[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for extern "C" fn(A, B, C, D, E, F, G, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C> Ord for (A, B, C) where
    A: Ord,
    B: Ord,
    C: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for unsafe extern "C" fn(A, B, C, D, E, F) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for extern "C" fn(A) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 15] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroU8[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F> Ord for (A, B, C, D, E, F) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 7] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for fn(A, B, C, D, E, F) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for extern "C" fn(A, B, C, D, E, F) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for TypeId[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for extern "C" fn(A, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for u16[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for unsafe extern "C" fn(A, B, C, D, E, F, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for isize[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for extern "C" fn(A, B, C, D) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for extern "C" fn(A, B, C, D, E, F, G, H, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for extern "C" fn(A, B, C, D, E, F, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D> Ord for unsafe extern "C" fn(A, B, C, D) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for unsafe extern "C" fn(A, B) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G> Ord for (A, B, C, D, E, F, G) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for u64[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'_, A> Ord for &'_ A where
    A: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

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

Implements comparison of vectors lexicographically.

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 8] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 27] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G, H, I, J, K, L> Ord for (A, B, C, D, E, F, G, H, I, J, K, L) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord,
    H: Ord,
    I: Ord,
    J: Ord,
    K: Ord,
    L: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroUsize[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 11] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 23] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for fn(A, B, C, D, E) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 16] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for UnicodeVersion[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for extern "C" fn(A, B, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Duration[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 9] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for unsafe extern "C" fn(A, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for i64[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for extern "C" fn(A, B, C, D, E) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for u8[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroI16[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for PhantomPinned[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for u32[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Ord for fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for unsafe extern "C" fn(A) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for NonNull<T> where
    T: ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 31] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<'_, A> Ord for &'_ mut A where
    A: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B> Ord for (A, B) where
    A: Ord,
    B: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 32] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H> Ord for unsafe fn(A, B, C, D, E, F, G, H) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F> Ord for unsafe fn(A, B, C, D, E, F) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 20] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for CpuidResult[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 5] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for bool[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 18] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C> Ord for extern "C" fn(A, B, C) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I> Ord for extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 6] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for char[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Poll<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B> Ord for unsafe fn(A, B) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A, B, C, D, E, F, G, H, I, J, K> Ord for (A, B, C, D, E, F, G, H, I, J, K) where
    A: Ord,
    B: Ord,
    C: Ord,
    D: Ord,
    E: Ord,
    F: Ord,
    G: Ord,
    H: Ord,
    I: Ord,
    J: Ord,
    K: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for NonZeroI32[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for i8[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for i32[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for unsafe fn(A) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 4] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 10] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<P> Ord for Pin<P> where
    P: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 25] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for [T; 19] where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Ord for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A, B, C, D, E> Ord for extern "C" fn(A, B, C, D, E, VaList) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Ret, A> Ord for fn(A) -> Ret[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Rc<T> where
    T: Ord + ?Sized
[src]

fn cmp(&self, other: &Rc<T>) -> Ordering[src]

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)));

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

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

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Arc<T> where
    T: Ord + ?Sized
[src]

fn cmp(&self, other: &Arc<T>) -> Ordering[src]

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)));

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Position

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Span

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for ClassUnicodeRange

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for ClassBytesRange

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Literal

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)
Loading content...

Implementors

impl Ord for NoneError[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Error[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Ordering[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for Infallible[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl Ord for String[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<A> Ord for VecDeque<A> where
    A: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<K, V> Ord for BTreeMap<K, V> where
    K: Ord,
    V: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Option<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Reverse<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for BTreeSet<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for LinkedList<T> where
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for ManuallyDrop<T> where
    T: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Box<T> where
    T: Ord + ?Sized
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T> Ord for Vec<T> where
    T: Ord
[src]

Implements ordering of vectors, lexicographically.

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<T, E> Ord for Result<T, E> where
    E: Ord,
    T: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

impl<Y, R> Ord for GeneratorState<Y, R> where
    R: Ord,
    Y: Ord
[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

default fn min(self, other: Self) -> Self
1.21.0
[src]

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)
Loading content...