1.0.0[−][src]Trait core::cmp::PartialOrd  
Trait for values that can be compared for a sort-order.
The comparison must satisfy, for all a, b and c:
- antisymmetry: if a < bthen!(a > b), as well asa > bimplying!(a < b); and
- transitivity: a < bandb < cimpliesa < c. The same must hold for both==and>.
Note that these requirements mean that the trait itself must be implemented symmetrically and
transitively: if T: PartialOrd<U> and U: PartialOrd<V> then U: PartialOrd<T> and T: PartialOrd<V>.
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 PartialOrd?
PartialOrd only requires implementation of the partial_cmp method, with the others
generated from default implementations.
However it remains possible to implement the others separately for types which do not have a
total order. For example, for floating point numbers, NaN < 0 == false and NaN >= 0 == false (cf. IEEE 754-2008 section 5.11).
PartialOrd requires your type to be PartialEq.
Implementations of PartialEq, PartialOrd, and Ord must agree with each other. It's
easy to accidentally make them disagree by deriving some of the traits and manually
implementing others.
If your type is Ord, you can implement partial_cmp() by using cmp():
use std::cmp::Ordering; #[derive(Eq)] struct Person { id: u32, name: String, height: u32, } impl PartialOrd for Person { fn partial_cmp(&self, other: &Person) -> Option<Ordering> { Some(self.cmp(other)) } } impl Ord for Person { fn cmp(&self, other: &Person) -> Ordering { self.height.cmp(&other.height) } } impl PartialEq for Person { fn eq(&self, other: &Person) -> bool { self.height == other.height } }Run
You may also find it useful to use partial_cmp() on your type's fields. Here
is an example of Person types who have a floating-point height field that
is the only field to be used for sorting:
use std::cmp::Ordering; struct Person { id: u32, name: String, height: f64, } impl PartialOrd for Person { fn partial_cmp(&self, other: &Person) -> Option<Ordering> { self.height.partial_cmp(&other.height) } } impl PartialEq for Person { fn eq(&self, other: &Person) -> bool { self.height == other.height } }Run
Examples
let x : u32 = 0; let y : u32 = 1; assert_eq!(x < y, true); assert_eq!(x.lt(&y), true);Run
Required Methods
#[must_use]
fn partial_cmp(&self, other: &Rhs) -> Option<Ordering>
This method returns an ordering between self and other values if one exists.
Examples
use std::cmp::Ordering; let result = 1.0.partial_cmp(&2.0); assert_eq!(result, Some(Ordering::Less)); let result = 1.0.partial_cmp(&1.0); assert_eq!(result, Some(Ordering::Equal)); let result = 2.0.partial_cmp(&1.0); assert_eq!(result, Some(Ordering::Greater));Run
When comparison is impossible:
let result = std::f64::NAN.partial_cmp(&1.0); assert_eq!(result, None);Run
Provided Methods
#[must_use]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator.
Examples
let result = 1.0 < 2.0; assert_eq!(result, true); let result = 2.0 < 1.0; assert_eq!(result, false);Run
#[must_use]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator.
Examples
let result = 1.0 <= 2.0; assert_eq!(result, true); let result = 2.0 <= 2.0; assert_eq!(result, true);Run
#[must_use]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self and other) and is used by the > operator.
Examples
let result = 1.0 > 2.0; assert_eq!(result, false); let result = 2.0 > 2.0; assert_eq!(result, false);Run
#[must_use]
fn ge(&self, other: &Rhs) -> bool
Implementors
impl PartialOrd for ![src] 
impl PartialOrd for !fn partial_cmp(&self, _: &!) -> Option<Ordering>[src] 
fn partial_cmp(&self, _: &!) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for ()[src] 
impl PartialOrd for ()fn partial_cmp(&self, _: &()) -> Option<Ordering>[src] 
fn partial_cmp(&self, _: &()) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for Ordering[src] 
impl PartialOrd for Orderingfn partial_cmp(&self, other: &Ordering) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Ordering) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for TypeId[src] 
impl PartialOrd for TypeIdfn partial_cmp(&self, other: &TypeId) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &TypeId) -> Option<Ordering>fn lt(&self, other: &TypeId) -> bool[src] 
fn lt(&self, other: &TypeId) -> boolfn le(&self, other: &TypeId) -> bool[src] 
fn le(&self, other: &TypeId) -> boolfn gt(&self, other: &TypeId) -> bool[src] 
fn gt(&self, other: &TypeId) -> boolfn ge(&self, other: &TypeId) -> bool[src] 
fn ge(&self, other: &TypeId) -> boolimpl PartialOrd for CpuidResult[src] 
impl PartialOrd for CpuidResultfn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>fn lt(&self, other: &CpuidResult) -> bool[src] 
fn lt(&self, other: &CpuidResult) -> boolfn le(&self, other: &CpuidResult) -> bool[src] 
fn le(&self, other: &CpuidResult) -> boolfn gt(&self, other: &CpuidResult) -> bool[src] 
fn gt(&self, other: &CpuidResult) -> boolfn ge(&self, other: &CpuidResult) -> bool[src] 
fn ge(&self, other: &CpuidResult) -> boolimpl PartialOrd for UnicodeVersion[src] 
impl PartialOrd for UnicodeVersionfn partial_cmp(&self, other: &UnicodeVersion) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &UnicodeVersion) -> Option<Ordering>fn lt(&self, other: &UnicodeVersion) -> bool[src] 
fn lt(&self, other: &UnicodeVersion) -> boolfn le(&self, other: &UnicodeVersion) -> bool[src] 
fn le(&self, other: &UnicodeVersion) -> boolfn gt(&self, other: &UnicodeVersion) -> bool[src] 
fn gt(&self, other: &UnicodeVersion) -> boolfn ge(&self, other: &UnicodeVersion) -> bool[src] 
fn ge(&self, other: &UnicodeVersion) -> boolimpl PartialOrd for Error[src] 
impl PartialOrd for Errorfn partial_cmp(&self, other: &Error) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Error) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for Pinned[src] 
impl PartialOrd for Pinnedfn partial_cmp(&self, other: &Pinned) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Pinned) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for NonZeroU128[src] 
impl PartialOrd for NonZeroU128fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>fn lt(&self, other: &NonZeroU128) -> bool[src] 
fn lt(&self, other: &NonZeroU128) -> boolfn le(&self, other: &NonZeroU128) -> bool[src] 
fn le(&self, other: &NonZeroU128) -> boolfn gt(&self, other: &NonZeroU128) -> bool[src] 
fn gt(&self, other: &NonZeroU128) -> boolfn ge(&self, other: &NonZeroU128) -> bool[src] 
fn ge(&self, other: &NonZeroU128) -> boolimpl PartialOrd for NonZeroU16[src] 
impl PartialOrd for NonZeroU16fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>fn lt(&self, other: &NonZeroU16) -> bool[src] 
fn lt(&self, other: &NonZeroU16) -> boolfn le(&self, other: &NonZeroU16) -> bool[src] 
fn le(&self, other: &NonZeroU16) -> boolfn gt(&self, other: &NonZeroU16) -> bool[src] 
fn gt(&self, other: &NonZeroU16) -> boolfn ge(&self, other: &NonZeroU16) -> bool[src] 
fn ge(&self, other: &NonZeroU16) -> boolimpl PartialOrd for NonZeroU32[src] 
impl PartialOrd for NonZeroU32fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>fn lt(&self, other: &NonZeroU32) -> bool[src] 
fn lt(&self, other: &NonZeroU32) -> boolfn le(&self, other: &NonZeroU32) -> bool[src] 
fn le(&self, other: &NonZeroU32) -> boolfn gt(&self, other: &NonZeroU32) -> bool[src] 
fn gt(&self, other: &NonZeroU32) -> boolfn ge(&self, other: &NonZeroU32) -> bool[src] 
fn ge(&self, other: &NonZeroU32) -> boolimpl PartialOrd for NonZeroU64[src] 
impl PartialOrd for NonZeroU64fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>fn lt(&self, other: &NonZeroU64) -> bool[src] 
fn lt(&self, other: &NonZeroU64) -> boolfn le(&self, other: &NonZeroU64) -> bool[src] 
fn le(&self, other: &NonZeroU64) -> boolfn gt(&self, other: &NonZeroU64) -> bool[src] 
fn gt(&self, other: &NonZeroU64) -> boolfn ge(&self, other: &NonZeroU64) -> bool[src] 
fn ge(&self, other: &NonZeroU64) -> boolimpl PartialOrd for NonZeroU8[src] 
impl PartialOrd for NonZeroU8fn partial_cmp(&self, other: &NonZeroU8) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroU8) -> Option<Ordering>fn lt(&self, other: &NonZeroU8) -> bool[src] 
fn lt(&self, other: &NonZeroU8) -> boolfn le(&self, other: &NonZeroU8) -> bool[src] 
fn le(&self, other: &NonZeroU8) -> boolfn gt(&self, other: &NonZeroU8) -> bool[src] 
fn gt(&self, other: &NonZeroU8) -> boolfn ge(&self, other: &NonZeroU8) -> bool[src] 
fn ge(&self, other: &NonZeroU8) -> boolimpl PartialOrd for NonZeroUsize[src] 
impl PartialOrd for NonZeroUsizefn partial_cmp(&self, other: &NonZeroUsize) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NonZeroUsize) -> Option<Ordering>fn lt(&self, other: &NonZeroUsize) -> bool[src] 
fn lt(&self, other: &NonZeroUsize) -> boolfn le(&self, other: &NonZeroUsize) -> bool[src] 
fn le(&self, other: &NonZeroUsize) -> boolfn gt(&self, other: &NonZeroUsize) -> bool[src] 
fn gt(&self, other: &NonZeroUsize) -> boolfn ge(&self, other: &NonZeroUsize) -> bool[src] 
fn ge(&self, other: &NonZeroUsize) -> boolimpl PartialOrd for NoneError[src] 
impl PartialOrd for NoneErrorfn partial_cmp(&self, other: &NoneError) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &NoneError) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for Duration[src] 
impl PartialOrd for Durationfn partial_cmp(&self, other: &Duration) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>fn lt(&self, other: &Duration) -> bool[src] 
fn lt(&self, other: &Duration) -> boolfn le(&self, other: &Duration) -> bool[src] 
fn le(&self, other: &Duration) -> boolfn gt(&self, other: &Duration) -> bool[src] 
fn gt(&self, other: &Duration) -> boolfn ge(&self, other: &Duration) -> bool[src] 
fn ge(&self, other: &Duration) -> boolimpl PartialOrd for bool[src] 
impl PartialOrd for boolfn partial_cmp(&self, other: &bool) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &bool) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for char[src] 
impl PartialOrd for charfn partial_cmp(&self, other: &char) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &char) -> Option<Ordering>fn lt(&self, other: &char) -> bool[src] 
fn lt(&self, other: &char) -> boolfn le(&self, other: &char) -> bool[src] 
fn le(&self, other: &char) -> boolfn ge(&self, other: &char) -> bool[src] 
fn ge(&self, other: &char) -> boolfn gt(&self, other: &char) -> bool[src] 
fn gt(&self, other: &char) -> boolimpl PartialOrd for f32[src] 
impl PartialOrd for f32fn partial_cmp(&self, other: &f32) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &f32) -> Option<Ordering>fn lt(&self, other: &f32) -> bool[src] 
fn lt(&self, other: &f32) -> boolfn le(&self, other: &f32) -> bool[src] 
fn le(&self, other: &f32) -> boolfn ge(&self, other: &f32) -> bool[src] 
fn ge(&self, other: &f32) -> boolfn gt(&self, other: &f32) -> bool[src] 
fn gt(&self, other: &f32) -> boolimpl PartialOrd for f64[src] 
impl PartialOrd for f64fn partial_cmp(&self, other: &f64) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &f64) -> Option<Ordering>fn lt(&self, other: &f64) -> bool[src] 
fn lt(&self, other: &f64) -> boolfn le(&self, other: &f64) -> bool[src] 
fn le(&self, other: &f64) -> boolfn ge(&self, other: &f64) -> bool[src] 
fn ge(&self, other: &f64) -> boolfn gt(&self, other: &f64) -> bool[src] 
fn gt(&self, other: &f64) -> boolimpl PartialOrd for i8[src] 
impl PartialOrd for i8fn partial_cmp(&self, other: &i8) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &i8) -> Option<Ordering>fn lt(&self, other: &i8) -> bool[src] 
fn lt(&self, other: &i8) -> boolfn le(&self, other: &i8) -> bool[src] 
fn le(&self, other: &i8) -> boolfn ge(&self, other: &i8) -> bool[src] 
fn ge(&self, other: &i8) -> boolfn gt(&self, other: &i8) -> bool[src] 
fn gt(&self, other: &i8) -> boolimpl PartialOrd for i16[src] 
impl PartialOrd for i16fn partial_cmp(&self, other: &i16) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &i16) -> Option<Ordering>fn lt(&self, other: &i16) -> bool[src] 
fn lt(&self, other: &i16) -> boolfn le(&self, other: &i16) -> bool[src] 
fn le(&self, other: &i16) -> boolfn ge(&self, other: &i16) -> bool[src] 
fn ge(&self, other: &i16) -> boolfn gt(&self, other: &i16) -> bool[src] 
fn gt(&self, other: &i16) -> boolimpl PartialOrd for i32[src] 
impl PartialOrd for i32fn partial_cmp(&self, other: &i32) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &i32) -> Option<Ordering>fn lt(&self, other: &i32) -> bool[src] 
fn lt(&self, other: &i32) -> boolfn le(&self, other: &i32) -> bool[src] 
fn le(&self, other: &i32) -> boolfn ge(&self, other: &i32) -> bool[src] 
fn ge(&self, other: &i32) -> boolfn gt(&self, other: &i32) -> bool[src] 
fn gt(&self, other: &i32) -> boolimpl PartialOrd for i64[src] 
impl PartialOrd for i64fn partial_cmp(&self, other: &i64) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &i64) -> Option<Ordering>fn lt(&self, other: &i64) -> bool[src] 
fn lt(&self, other: &i64) -> boolfn le(&self, other: &i64) -> bool[src] 
fn le(&self, other: &i64) -> boolfn ge(&self, other: &i64) -> bool[src] 
fn ge(&self, other: &i64) -> boolfn gt(&self, other: &i64) -> bool[src] 
fn gt(&self, other: &i64) -> boolimpl PartialOrd for i128[src] 
impl PartialOrd for i128fn partial_cmp(&self, other: &i128) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &i128) -> Option<Ordering>fn lt(&self, other: &i128) -> bool[src] 
fn lt(&self, other: &i128) -> boolfn le(&self, other: &i128) -> bool[src] 
fn le(&self, other: &i128) -> boolfn ge(&self, other: &i128) -> bool[src] 
fn ge(&self, other: &i128) -> boolfn gt(&self, other: &i128) -> bool[src] 
fn gt(&self, other: &i128) -> boolimpl PartialOrd for isize[src] 
impl PartialOrd for isizefn partial_cmp(&self, other: &isize) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &isize) -> Option<Ordering>fn lt(&self, other: &isize) -> bool[src] 
fn lt(&self, other: &isize) -> boolfn le(&self, other: &isize) -> bool[src] 
fn le(&self, other: &isize) -> boolfn ge(&self, other: &isize) -> bool[src] 
fn ge(&self, other: &isize) -> boolfn gt(&self, other: &isize) -> bool[src] 
fn gt(&self, other: &isize) -> boolimpl PartialOrd for str[src] 
impl PartialOrd for strImplements comparison operations on strings.
Strings are compared lexicographically by their byte values.  This compares 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.  Comparing strings according to
culturally-accepted standards requires locale-specific data that is outside the scope of
the str type.
fn partial_cmp(&self, other: &str) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &str) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl PartialOrd for u8[src] 
impl PartialOrd for u8fn partial_cmp(&self, other: &u8) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &u8) -> Option<Ordering>fn lt(&self, other: &u8) -> bool[src] 
fn lt(&self, other: &u8) -> boolfn le(&self, other: &u8) -> bool[src] 
fn le(&self, other: &u8) -> boolfn ge(&self, other: &u8) -> bool[src] 
fn ge(&self, other: &u8) -> boolfn gt(&self, other: &u8) -> bool[src] 
fn gt(&self, other: &u8) -> boolimpl PartialOrd for u16[src] 
impl PartialOrd for u16fn partial_cmp(&self, other: &u16) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &u16) -> Option<Ordering>fn lt(&self, other: &u16) -> bool[src] 
fn lt(&self, other: &u16) -> boolfn le(&self, other: &u16) -> bool[src] 
fn le(&self, other: &u16) -> boolfn ge(&self, other: &u16) -> bool[src] 
fn ge(&self, other: &u16) -> boolfn gt(&self, other: &u16) -> bool[src] 
fn gt(&self, other: &u16) -> boolimpl PartialOrd for u32[src] 
impl PartialOrd for u32fn partial_cmp(&self, other: &u32) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &u32) -> Option<Ordering>fn lt(&self, other: &u32) -> bool[src] 
fn lt(&self, other: &u32) -> boolfn le(&self, other: &u32) -> bool[src] 
fn le(&self, other: &u32) -> boolfn ge(&self, other: &u32) -> bool[src] 
fn ge(&self, other: &u32) -> boolfn gt(&self, other: &u32) -> bool[src] 
fn gt(&self, other: &u32) -> boolimpl PartialOrd for u64[src] 
impl PartialOrd for u64fn partial_cmp(&self, other: &u64) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &u64) -> Option<Ordering>fn lt(&self, other: &u64) -> bool[src] 
fn lt(&self, other: &u64) -> boolfn le(&self, other: &u64) -> bool[src] 
fn le(&self, other: &u64) -> boolfn ge(&self, other: &u64) -> bool[src] 
fn ge(&self, other: &u64) -> boolfn gt(&self, other: &u64) -> bool[src] 
fn gt(&self, other: &u64) -> boolimpl PartialOrd for u128[src] 
impl PartialOrd for u128fn partial_cmp(&self, other: &u128) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &u128) -> Option<Ordering>fn lt(&self, other: &u128) -> bool[src] 
fn lt(&self, other: &u128) -> boolfn le(&self, other: &u128) -> bool[src] 
fn le(&self, other: &u128) -> boolfn ge(&self, other: &u128) -> bool[src] 
fn ge(&self, other: &u128) -> boolfn gt(&self, other: &u128) -> bool[src] 
fn gt(&self, other: &u128) -> boolimpl PartialOrd for usize[src] 
impl PartialOrd for usizefn partial_cmp(&self, other: &usize) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &usize) -> Option<Ordering>fn lt(&self, other: &usize) -> bool[src] 
fn lt(&self, other: &usize) -> boolfn le(&self, other: &usize) -> bool[src] 
fn le(&self, other: &usize) -> boolfn ge(&self, other: &usize) -> bool[src] 
fn ge(&self, other: &usize) -> boolfn gt(&self, other: &usize) -> bool[src] 
fn gt(&self, other: &usize) -> boolimpl<'a, 'b, A: ?Sized, B: ?Sized> PartialOrd<&'b B> for &'a A where
    A: PartialOrd<B>, [src] 
impl<'a, 'b, A: ?Sized, B: ?Sized> PartialOrd<&'b B> for &'a A where
    A: PartialOrd<B>, fn partial_cmp(&self, other: &&'b B) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &&'b B) -> Option<Ordering>fn lt(&self, other: &&'b B) -> bool[src] 
fn lt(&self, other: &&'b B) -> boolfn le(&self, other: &&'b B) -> bool[src] 
fn le(&self, other: &&'b B) -> boolfn ge(&self, other: &&'b B) -> bool[src] 
fn ge(&self, other: &&'b B) -> boolfn gt(&self, other: &&'b B) -> bool[src] 
fn gt(&self, other: &&'b B) -> boolimpl<'a, 'b, A: ?Sized, B: ?Sized> PartialOrd<&'b mut B> for &'a mut A where
    A: PartialOrd<B>, [src] 
impl<'a, 'b, A: ?Sized, B: ?Sized> PartialOrd<&'b mut B> for &'a mut A where
    A: PartialOrd<B>, fn partial_cmp(&self, other: &&'b mut B) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &&'b mut B) -> Option<Ordering>fn lt(&self, other: &&'b mut B) -> bool[src] 
fn lt(&self, other: &&'b mut B) -> boolfn le(&self, other: &&'b mut B) -> bool[src] 
fn le(&self, other: &&'b mut B) -> boolfn ge(&self, other: &&'b mut B) -> bool[src] 
fn ge(&self, other: &&'b mut B) -> boolfn gt(&self, other: &&'b mut B) -> bool[src] 
fn gt(&self, other: &&'b mut B) -> boolimpl<A> PartialOrd for (A,) where
    A: PartialOrd + PartialEq + ?Sized, [src] 
impl<A> PartialOrd for (A,) where
    A: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A,)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A,)) -> Option<Ordering>fn lt(&self, other: &(A,)) -> bool[src] 
fn lt(&self, other: &(A,)) -> boolfn le(&self, other: &(A,)) -> bool[src] 
fn le(&self, other: &(A,)) -> boolfn ge(&self, other: &(A,)) -> bool[src] 
fn ge(&self, other: &(A,)) -> boolfn gt(&self, other: &(A,)) -> bool[src] 
fn gt(&self, other: &(A,)) -> boolimpl<A: PartialOrd + PartialEq, B> PartialOrd for (A, B) where
    B: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B> PartialOrd for (A, B) where
    B: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B)) -> Option<Ordering>fn lt(&self, other: &(A, B)) -> bool[src] 
fn lt(&self, other: &(A, B)) -> boolfn le(&self, other: &(A, B)) -> bool[src] 
fn le(&self, other: &(A, B)) -> boolfn ge(&self, other: &(A, B)) -> bool[src] 
fn ge(&self, other: &(A, B)) -> boolfn gt(&self, other: &(A, B)) -> bool[src] 
fn gt(&self, other: &(A, B)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C> PartialOrd for (A, B, C) where
    C: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C> PartialOrd for (A, B, C) where
    C: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C)) -> Option<Ordering>fn lt(&self, other: &(A, B, C)) -> bool[src] 
fn lt(&self, other: &(A, B, C)) -> boolfn le(&self, other: &(A, B, C)) -> bool[src] 
fn le(&self, other: &(A, B, C)) -> boolfn ge(&self, other: &(A, B, C)) -> bool[src] 
fn ge(&self, other: &(A, B, C)) -> boolfn gt(&self, other: &(A, B, C)) -> bool[src] 
fn gt(&self, other: &(A, B, C)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D> PartialOrd for (A, B, C, D) where
    D: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D> PartialOrd for (A, B, C, D) where
    D: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D)) -> boolfn le(&self, other: &(A, B, C, D)) -> bool[src] 
fn le(&self, other: &(A, B, C, D)) -> boolfn ge(&self, other: &(A, B, C, D)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D)) -> boolfn gt(&self, other: &(A, B, C, D)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E> PartialOrd for (A, B, C, D, E) where
    E: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E> PartialOrd for (A, B, C, D, E) where
    E: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D, E)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D, E)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E)) -> boolfn le(&self, other: &(A, B, C, D, E)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E)) -> boolfn ge(&self, other: &(A, B, C, D, E)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E)) -> boolfn gt(&self, other: &(A, B, C, D, E)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F> PartialOrd for (A, B, C, D, E, F) where
    F: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F> PartialOrd for (A, B, C, D, E, F) where
    F: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D, E, F)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D, E, F)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F)) -> boolfn le(&self, other: &(A, B, C, D, E, F)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F)) -> boolfn ge(&self, other: &(A, B, C, D, E, F)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F)) -> boolfn gt(&self, other: &(A, B, C, D, E, F)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G> PartialOrd for (A, B, C, D, E, F, G) where
    G: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G> PartialOrd for (A, B, C, D, E, F, G) where
    G: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D, E, F, G)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H> PartialOrd for (A, B, C, D, E, F, G, H) where
    H: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H> PartialOrd for (A, B, C, D, E, F, G, H) where
    H: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G, H)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G, H)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G, H)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G, H)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G, H)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G, H)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G, H)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G, H)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I> PartialOrd for (A, B, C, D, E, F, G, H, I) where
    I: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I> PartialOrd for (A, B, C, D, E, F, G, H, I) where
    I: PartialOrd + PartialEq + ?Sized, fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H, I)) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H, I)) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G, H, I)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G, H, I)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G, H, I)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G, H, I)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G, H, I)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G, H, I)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G, H, I)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J> PartialOrd for (A, B, C, D, E, F, G, H, I, J) where
    J: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J> PartialOrd for (A, B, C, D, E, F, G, H, I, J) where
    J: PartialOrd + PartialEq + ?Sized, fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J)
) -> Option<Ordering>[src] 
fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J)
) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J: PartialOrd + PartialEq, K> PartialOrd for (A, B, C, D, E, F, G, H, I, J, K) where
    K: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J: PartialOrd + PartialEq, K> PartialOrd for (A, B, C, D, E, F, G, H, I, J, K) where
    K: PartialOrd + PartialEq + ?Sized, fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J, K)
) -> Option<Ordering>[src] 
fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J, K)
) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> boolimpl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J: PartialOrd + PartialEq, K: PartialOrd + PartialEq, L> PartialOrd for (A, B, C, D, E, F, G, H, I, J, K, L) where
    L: PartialOrd + PartialEq + ?Sized, [src] 
impl<A: PartialOrd + PartialEq, B: PartialOrd + PartialEq, C: PartialOrd + PartialEq, D: PartialOrd + PartialEq, E: PartialOrd + PartialEq, F: PartialOrd + PartialEq, G: PartialOrd + PartialEq, H: PartialOrd + PartialEq, I: PartialOrd + PartialEq, J: PartialOrd + PartialEq, K: PartialOrd + PartialEq, L> PartialOrd for (A, B, C, D, E, F, G, H, I, J, K, L) where
    L: PartialOrd + PartialEq + ?Sized, fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J, K, L)
) -> Option<Ordering>[src] 
fn partial_cmp(
    &self, 
    other: &(A, B, C, D, E, F, G, H, I, J, K, L)
) -> Option<Ordering>fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> bool[src] 
fn lt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> boolfn le(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> bool[src] 
fn le(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> boolfn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> bool[src] 
fn ge(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> boolfn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> bool[src] 
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> boolimpl<Ret> PartialOrd for extern "C" fn() -> Ret[src] 
impl<Ret> PartialOrd for extern "C" fn() -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret> PartialOrd for fn() -> Ret[src] 
impl<Ret> PartialOrd for fn() -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret> PartialOrd for unsafe extern "C" fn() -> Ret[src] 
impl<Ret> PartialOrd for unsafe extern "C" fn() -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret> PartialOrd for unsafe fn() -> Ret[src] 
impl<Ret> PartialOrd for unsafe fn() -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for extern "C" fn(_: A) -> Ret[src] 
impl<Ret, A> PartialOrd for extern "C" fn(_: A) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for extern "C" fn(_: A, ...) -> Ret[src] 
impl<Ret, A> PartialOrd for extern "C" fn(_: A, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for fn(_: A) -> Ret[src] 
impl<Ret, A> PartialOrd for fn(_: A) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for unsafe extern "C" fn(_: A) -> Ret[src] 
impl<Ret, A> PartialOrd for unsafe extern "C" fn(_: A) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for unsafe extern "C" fn(_: A, ...) -> Ret[src] 
impl<Ret, A> PartialOrd for unsafe extern "C" fn(_: A, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A> PartialOrd for unsafe fn(_: A) -> Ret[src] 
impl<Ret, A> PartialOrd for unsafe fn(_: A) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for extern "C" fn(_: A, _: B) -> Ret[src] 
impl<Ret, A, B> PartialOrd for extern "C" fn(_: A, _: B) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for extern "C" fn(_: A, _: B, ...) -> Ret[src] 
impl<Ret, A, B> PartialOrd for extern "C" fn(_: A, _: B, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for fn(_: A, _: B) -> Ret[src] 
impl<Ret, A, B> PartialOrd for fn(_: A, _: B) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for unsafe extern "C" fn(_: A, _: B) -> Ret[src] 
impl<Ret, A, B> PartialOrd for unsafe extern "C" fn(_: A, _: B) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for unsafe extern "C" fn(_: A, _: B, ...) -> Ret[src] 
impl<Ret, A, B> PartialOrd for unsafe extern "C" fn(_: A, _: B, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B> PartialOrd for unsafe fn(_: A, _: B) -> Ret[src] 
impl<Ret, A, B> PartialOrd for unsafe fn(_: A, _: B) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for extern "C" fn(_: A, _: B, _: C) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for extern "C" fn(_: A, _: B, _: C) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for extern "C" fn(_: A, _: B, _: C, ...) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for extern "C" fn(_: A, _: B, _: C, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for fn(_: A, _: B, _: C) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for fn(_: A, _: B, _: C) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, ...) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C> PartialOrd for unsafe fn(_: A, _: B, _: C) -> Ret[src] 
impl<Ret, A, B, C> PartialOrd for unsafe fn(_: A, _: B, _: C) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, ...) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for fn(_: A, _: B, _: C, _: D) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for fn(_: A, _: B, _: C, _: D) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, ...) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D) -> Ret[src] 
impl<Ret, A, B, C, D> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E) -> Ret[src] 
impl<Ret, A, B, C, D, E> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Ret[src] 
impl<Ret, A, B, C, D, E, F> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L, ...) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe extern "C" fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L, ...) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Ret[src] 
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd for unsafe fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I, _: J, _: K, _: L) -> Retfn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<T: PartialOrd + Copy> PartialOrd for Cell<T>[src] 
impl<T: PartialOrd + Copy> PartialOrd for Cell<T>fn partial_cmp(&self, other: &Cell<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Cell<T>) -> Option<Ordering>fn lt(&self, other: &Cell<T>) -> bool[src] 
fn lt(&self, other: &Cell<T>) -> boolfn le(&self, other: &Cell<T>) -> bool[src] 
fn le(&self, other: &Cell<T>) -> boolfn gt(&self, other: &Cell<T>) -> bool[src] 
fn gt(&self, other: &Cell<T>) -> boolfn ge(&self, other: &Cell<T>) -> bool[src] 
fn ge(&self, other: &Cell<T>) -> boolimpl<T: PartialOrd + ?Sized> PartialOrd for ManuallyDrop<T>[src] 
impl<T: PartialOrd + ?Sized> PartialOrd for ManuallyDrop<T>fn partial_cmp(&self, other: &ManuallyDrop<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &ManuallyDrop<T>) -> Option<Ordering>fn lt(&self, other: &ManuallyDrop<T>) -> bool[src] 
fn lt(&self, other: &ManuallyDrop<T>) -> boolfn le(&self, other: &ManuallyDrop<T>) -> bool[src] 
fn le(&self, other: &ManuallyDrop<T>) -> boolfn gt(&self, other: &ManuallyDrop<T>) -> bool[src] 
fn gt(&self, other: &ManuallyDrop<T>) -> boolfn ge(&self, other: &ManuallyDrop<T>) -> bool[src] 
fn ge(&self, other: &ManuallyDrop<T>) -> boolimpl<T: PartialOrd> PartialOrd for Option<T>[src] 
impl<T: PartialOrd> PartialOrd for Option<T>fn partial_cmp(&self, other: &Option<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Option<T>) -> Option<Ordering>fn lt(&self, other: &Option<T>) -> bool[src] 
fn lt(&self, other: &Option<T>) -> boolfn le(&self, other: &Option<T>) -> bool[src] 
fn le(&self, other: &Option<T>) -> boolfn gt(&self, other: &Option<T>) -> bool[src] 
fn gt(&self, other: &Option<T>) -> boolfn ge(&self, other: &Option<T>) -> bool[src] 
fn ge(&self, other: &Option<T>) -> boolimpl<T: PartialOrd> PartialOrd for Poll<T>[src] 
impl<T: PartialOrd> PartialOrd for Poll<T>fn partial_cmp(&self, other: &Poll<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Poll<T>) -> Option<Ordering>fn lt(&self, other: &Poll<T>) -> bool[src] 
fn lt(&self, other: &Poll<T>) -> boolfn le(&self, other: &Poll<T>) -> bool[src] 
fn le(&self, other: &Poll<T>) -> boolfn gt(&self, other: &Poll<T>) -> bool[src] 
fn gt(&self, other: &Poll<T>) -> boolfn ge(&self, other: &Poll<T>) -> bool[src] 
fn ge(&self, other: &Poll<T>) -> boolimpl<T: PartialOrd> PartialOrd for Reverse<T>[src] 
impl<T: PartialOrd> PartialOrd for Reverse<T>fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering>fn lt(&self, other: &Self) -> bool[src] 
fn lt(&self, other: &Self) -> boolfn le(&self, other: &Self) -> bool[src] 
fn le(&self, other: &Self) -> boolfn ge(&self, other: &Self) -> bool[src] 
fn ge(&self, other: &Self) -> boolfn gt(&self, other: &Self) -> bool[src] 
fn gt(&self, other: &Self) -> boolimpl<T: PartialOrd> PartialOrd for Wrapping<T>[src] 
impl<T: PartialOrd> PartialOrd for Wrapping<T>fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>fn lt(&self, other: &Wrapping<T>) -> bool[src] 
fn lt(&self, other: &Wrapping<T>) -> boolfn le(&self, other: &Wrapping<T>) -> bool[src] 
fn le(&self, other: &Wrapping<T>) -> boolfn gt(&self, other: &Wrapping<T>) -> bool[src] 
fn gt(&self, other: &Wrapping<T>) -> boolfn ge(&self, other: &Wrapping<T>) -> bool[src] 
fn ge(&self, other: &Wrapping<T>) -> boolimpl<T: PartialOrd> PartialOrd for [T; 0][src] 
impl<T: PartialOrd> PartialOrd for [T; 0]fn partial_cmp(&self, other: &[T; 0]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 0]) -> Option<Ordering>fn lt(&self, other: &[T; 0]) -> bool[src] 
fn lt(&self, other: &[T; 0]) -> boolfn le(&self, other: &[T; 0]) -> bool[src] 
fn le(&self, other: &[T; 0]) -> boolfn ge(&self, other: &[T; 0]) -> bool[src] 
fn ge(&self, other: &[T; 0]) -> boolfn gt(&self, other: &[T; 0]) -> bool[src] 
fn gt(&self, other: &[T; 0]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 1][src] 
impl<T: PartialOrd> PartialOrd for [T; 1]fn partial_cmp(&self, other: &[T; 1]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 1]) -> Option<Ordering>fn lt(&self, other: &[T; 1]) -> bool[src] 
fn lt(&self, other: &[T; 1]) -> boolfn le(&self, other: &[T; 1]) -> bool[src] 
fn le(&self, other: &[T; 1]) -> boolfn ge(&self, other: &[T; 1]) -> bool[src] 
fn ge(&self, other: &[T; 1]) -> boolfn gt(&self, other: &[T; 1]) -> bool[src] 
fn gt(&self, other: &[T; 1]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 2][src] 
impl<T: PartialOrd> PartialOrd for [T; 2]fn partial_cmp(&self, other: &[T; 2]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 2]) -> Option<Ordering>fn lt(&self, other: &[T; 2]) -> bool[src] 
fn lt(&self, other: &[T; 2]) -> boolfn le(&self, other: &[T; 2]) -> bool[src] 
fn le(&self, other: &[T; 2]) -> boolfn ge(&self, other: &[T; 2]) -> bool[src] 
fn ge(&self, other: &[T; 2]) -> boolfn gt(&self, other: &[T; 2]) -> bool[src] 
fn gt(&self, other: &[T; 2]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 3][src] 
impl<T: PartialOrd> PartialOrd for [T; 3]fn partial_cmp(&self, other: &[T; 3]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 3]) -> Option<Ordering>fn lt(&self, other: &[T; 3]) -> bool[src] 
fn lt(&self, other: &[T; 3]) -> boolfn le(&self, other: &[T; 3]) -> bool[src] 
fn le(&self, other: &[T; 3]) -> boolfn ge(&self, other: &[T; 3]) -> bool[src] 
fn ge(&self, other: &[T; 3]) -> boolfn gt(&self, other: &[T; 3]) -> bool[src] 
fn gt(&self, other: &[T; 3]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 4][src] 
impl<T: PartialOrd> PartialOrd for [T; 4]fn partial_cmp(&self, other: &[T; 4]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 4]) -> Option<Ordering>fn lt(&self, other: &[T; 4]) -> bool[src] 
fn lt(&self, other: &[T; 4]) -> boolfn le(&self, other: &[T; 4]) -> bool[src] 
fn le(&self, other: &[T; 4]) -> boolfn ge(&self, other: &[T; 4]) -> bool[src] 
fn ge(&self, other: &[T; 4]) -> boolfn gt(&self, other: &[T; 4]) -> bool[src] 
fn gt(&self, other: &[T; 4]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 5][src] 
impl<T: PartialOrd> PartialOrd for [T; 5]fn partial_cmp(&self, other: &[T; 5]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 5]) -> Option<Ordering>fn lt(&self, other: &[T; 5]) -> bool[src] 
fn lt(&self, other: &[T; 5]) -> boolfn le(&self, other: &[T; 5]) -> bool[src] 
fn le(&self, other: &[T; 5]) -> boolfn ge(&self, other: &[T; 5]) -> bool[src] 
fn ge(&self, other: &[T; 5]) -> boolfn gt(&self, other: &[T; 5]) -> bool[src] 
fn gt(&self, other: &[T; 5]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 6][src] 
impl<T: PartialOrd> PartialOrd for [T; 6]fn partial_cmp(&self, other: &[T; 6]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 6]) -> Option<Ordering>fn lt(&self, other: &[T; 6]) -> bool[src] 
fn lt(&self, other: &[T; 6]) -> boolfn le(&self, other: &[T; 6]) -> bool[src] 
fn le(&self, other: &[T; 6]) -> boolfn ge(&self, other: &[T; 6]) -> bool[src] 
fn ge(&self, other: &[T; 6]) -> boolfn gt(&self, other: &[T; 6]) -> bool[src] 
fn gt(&self, other: &[T; 6]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 7][src] 
impl<T: PartialOrd> PartialOrd for [T; 7]fn partial_cmp(&self, other: &[T; 7]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 7]) -> Option<Ordering>fn lt(&self, other: &[T; 7]) -> bool[src] 
fn lt(&self, other: &[T; 7]) -> boolfn le(&self, other: &[T; 7]) -> bool[src] 
fn le(&self, other: &[T; 7]) -> boolfn ge(&self, other: &[T; 7]) -> bool[src] 
fn ge(&self, other: &[T; 7]) -> boolfn gt(&self, other: &[T; 7]) -> bool[src] 
fn gt(&self, other: &[T; 7]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 8][src] 
impl<T: PartialOrd> PartialOrd for [T; 8]fn partial_cmp(&self, other: &[T; 8]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 8]) -> Option<Ordering>fn lt(&self, other: &[T; 8]) -> bool[src] 
fn lt(&self, other: &[T; 8]) -> boolfn le(&self, other: &[T; 8]) -> bool[src] 
fn le(&self, other: &[T; 8]) -> boolfn ge(&self, other: &[T; 8]) -> bool[src] 
fn ge(&self, other: &[T; 8]) -> boolfn gt(&self, other: &[T; 8]) -> bool[src] 
fn gt(&self, other: &[T; 8]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 9][src] 
impl<T: PartialOrd> PartialOrd for [T; 9]fn partial_cmp(&self, other: &[T; 9]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 9]) -> Option<Ordering>fn lt(&self, other: &[T; 9]) -> bool[src] 
fn lt(&self, other: &[T; 9]) -> boolfn le(&self, other: &[T; 9]) -> bool[src] 
fn le(&self, other: &[T; 9]) -> boolfn ge(&self, other: &[T; 9]) -> bool[src] 
fn ge(&self, other: &[T; 9]) -> boolfn gt(&self, other: &[T; 9]) -> bool[src] 
fn gt(&self, other: &[T; 9]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 10][src] 
impl<T: PartialOrd> PartialOrd for [T; 10]fn partial_cmp(&self, other: &[T; 10]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 10]) -> Option<Ordering>fn lt(&self, other: &[T; 10]) -> bool[src] 
fn lt(&self, other: &[T; 10]) -> boolfn le(&self, other: &[T; 10]) -> bool[src] 
fn le(&self, other: &[T; 10]) -> boolfn ge(&self, other: &[T; 10]) -> bool[src] 
fn ge(&self, other: &[T; 10]) -> boolfn gt(&self, other: &[T; 10]) -> bool[src] 
fn gt(&self, other: &[T; 10]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 11][src] 
impl<T: PartialOrd> PartialOrd for [T; 11]fn partial_cmp(&self, other: &[T; 11]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 11]) -> Option<Ordering>fn lt(&self, other: &[T; 11]) -> bool[src] 
fn lt(&self, other: &[T; 11]) -> boolfn le(&self, other: &[T; 11]) -> bool[src] 
fn le(&self, other: &[T; 11]) -> boolfn ge(&self, other: &[T; 11]) -> bool[src] 
fn ge(&self, other: &[T; 11]) -> boolfn gt(&self, other: &[T; 11]) -> bool[src] 
fn gt(&self, other: &[T; 11]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 12][src] 
impl<T: PartialOrd> PartialOrd for [T; 12]fn partial_cmp(&self, other: &[T; 12]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 12]) -> Option<Ordering>fn lt(&self, other: &[T; 12]) -> bool[src] 
fn lt(&self, other: &[T; 12]) -> boolfn le(&self, other: &[T; 12]) -> bool[src] 
fn le(&self, other: &[T; 12]) -> boolfn ge(&self, other: &[T; 12]) -> bool[src] 
fn ge(&self, other: &[T; 12]) -> boolfn gt(&self, other: &[T; 12]) -> bool[src] 
fn gt(&self, other: &[T; 12]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 13][src] 
impl<T: PartialOrd> PartialOrd for [T; 13]fn partial_cmp(&self, other: &[T; 13]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 13]) -> Option<Ordering>fn lt(&self, other: &[T; 13]) -> bool[src] 
fn lt(&self, other: &[T; 13]) -> boolfn le(&self, other: &[T; 13]) -> bool[src] 
fn le(&self, other: &[T; 13]) -> boolfn ge(&self, other: &[T; 13]) -> bool[src] 
fn ge(&self, other: &[T; 13]) -> boolfn gt(&self, other: &[T; 13]) -> bool[src] 
fn gt(&self, other: &[T; 13]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 14][src] 
impl<T: PartialOrd> PartialOrd for [T; 14]fn partial_cmp(&self, other: &[T; 14]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 14]) -> Option<Ordering>fn lt(&self, other: &[T; 14]) -> bool[src] 
fn lt(&self, other: &[T; 14]) -> boolfn le(&self, other: &[T; 14]) -> bool[src] 
fn le(&self, other: &[T; 14]) -> boolfn ge(&self, other: &[T; 14]) -> bool[src] 
fn ge(&self, other: &[T; 14]) -> boolfn gt(&self, other: &[T; 14]) -> bool[src] 
fn gt(&self, other: &[T; 14]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 15][src] 
impl<T: PartialOrd> PartialOrd for [T; 15]fn partial_cmp(&self, other: &[T; 15]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 15]) -> Option<Ordering>fn lt(&self, other: &[T; 15]) -> bool[src] 
fn lt(&self, other: &[T; 15]) -> boolfn le(&self, other: &[T; 15]) -> bool[src] 
fn le(&self, other: &[T; 15]) -> boolfn ge(&self, other: &[T; 15]) -> bool[src] 
fn ge(&self, other: &[T; 15]) -> boolfn gt(&self, other: &[T; 15]) -> bool[src] 
fn gt(&self, other: &[T; 15]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 16][src] 
impl<T: PartialOrd> PartialOrd for [T; 16]fn partial_cmp(&self, other: &[T; 16]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 16]) -> Option<Ordering>fn lt(&self, other: &[T; 16]) -> bool[src] 
fn lt(&self, other: &[T; 16]) -> boolfn le(&self, other: &[T; 16]) -> bool[src] 
fn le(&self, other: &[T; 16]) -> boolfn ge(&self, other: &[T; 16]) -> bool[src] 
fn ge(&self, other: &[T; 16]) -> boolfn gt(&self, other: &[T; 16]) -> bool[src] 
fn gt(&self, other: &[T; 16]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 17][src] 
impl<T: PartialOrd> PartialOrd for [T; 17]fn partial_cmp(&self, other: &[T; 17]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 17]) -> Option<Ordering>fn lt(&self, other: &[T; 17]) -> bool[src] 
fn lt(&self, other: &[T; 17]) -> boolfn le(&self, other: &[T; 17]) -> bool[src] 
fn le(&self, other: &[T; 17]) -> boolfn ge(&self, other: &[T; 17]) -> bool[src] 
fn ge(&self, other: &[T; 17]) -> boolfn gt(&self, other: &[T; 17]) -> bool[src] 
fn gt(&self, other: &[T; 17]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 18][src] 
impl<T: PartialOrd> PartialOrd for [T; 18]fn partial_cmp(&self, other: &[T; 18]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 18]) -> Option<Ordering>fn lt(&self, other: &[T; 18]) -> bool[src] 
fn lt(&self, other: &[T; 18]) -> boolfn le(&self, other: &[T; 18]) -> bool[src] 
fn le(&self, other: &[T; 18]) -> boolfn ge(&self, other: &[T; 18]) -> bool[src] 
fn ge(&self, other: &[T; 18]) -> boolfn gt(&self, other: &[T; 18]) -> bool[src] 
fn gt(&self, other: &[T; 18]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 19][src] 
impl<T: PartialOrd> PartialOrd for [T; 19]fn partial_cmp(&self, other: &[T; 19]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 19]) -> Option<Ordering>fn lt(&self, other: &[T; 19]) -> bool[src] 
fn lt(&self, other: &[T; 19]) -> boolfn le(&self, other: &[T; 19]) -> bool[src] 
fn le(&self, other: &[T; 19]) -> boolfn ge(&self, other: &[T; 19]) -> bool[src] 
fn ge(&self, other: &[T; 19]) -> boolfn gt(&self, other: &[T; 19]) -> bool[src] 
fn gt(&self, other: &[T; 19]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 20][src] 
impl<T: PartialOrd> PartialOrd for [T; 20]fn partial_cmp(&self, other: &[T; 20]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 20]) -> Option<Ordering>fn lt(&self, other: &[T; 20]) -> bool[src] 
fn lt(&self, other: &[T; 20]) -> boolfn le(&self, other: &[T; 20]) -> bool[src] 
fn le(&self, other: &[T; 20]) -> boolfn ge(&self, other: &[T; 20]) -> bool[src] 
fn ge(&self, other: &[T; 20]) -> boolfn gt(&self, other: &[T; 20]) -> bool[src] 
fn gt(&self, other: &[T; 20]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 21][src] 
impl<T: PartialOrd> PartialOrd for [T; 21]fn partial_cmp(&self, other: &[T; 21]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 21]) -> Option<Ordering>fn lt(&self, other: &[T; 21]) -> bool[src] 
fn lt(&self, other: &[T; 21]) -> boolfn le(&self, other: &[T; 21]) -> bool[src] 
fn le(&self, other: &[T; 21]) -> boolfn ge(&self, other: &[T; 21]) -> bool[src] 
fn ge(&self, other: &[T; 21]) -> boolfn gt(&self, other: &[T; 21]) -> bool[src] 
fn gt(&self, other: &[T; 21]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 22][src] 
impl<T: PartialOrd> PartialOrd for [T; 22]fn partial_cmp(&self, other: &[T; 22]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 22]) -> Option<Ordering>fn lt(&self, other: &[T; 22]) -> bool[src] 
fn lt(&self, other: &[T; 22]) -> boolfn le(&self, other: &[T; 22]) -> bool[src] 
fn le(&self, other: &[T; 22]) -> boolfn ge(&self, other: &[T; 22]) -> bool[src] 
fn ge(&self, other: &[T; 22]) -> boolfn gt(&self, other: &[T; 22]) -> bool[src] 
fn gt(&self, other: &[T; 22]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 23][src] 
impl<T: PartialOrd> PartialOrd for [T; 23]fn partial_cmp(&self, other: &[T; 23]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 23]) -> Option<Ordering>fn lt(&self, other: &[T; 23]) -> bool[src] 
fn lt(&self, other: &[T; 23]) -> boolfn le(&self, other: &[T; 23]) -> bool[src] 
fn le(&self, other: &[T; 23]) -> boolfn ge(&self, other: &[T; 23]) -> bool[src] 
fn ge(&self, other: &[T; 23]) -> boolfn gt(&self, other: &[T; 23]) -> bool[src] 
fn gt(&self, other: &[T; 23]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 24][src] 
impl<T: PartialOrd> PartialOrd for [T; 24]fn partial_cmp(&self, other: &[T; 24]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 24]) -> Option<Ordering>fn lt(&self, other: &[T; 24]) -> bool[src] 
fn lt(&self, other: &[T; 24]) -> boolfn le(&self, other: &[T; 24]) -> bool[src] 
fn le(&self, other: &[T; 24]) -> boolfn ge(&self, other: &[T; 24]) -> bool[src] 
fn ge(&self, other: &[T; 24]) -> boolfn gt(&self, other: &[T; 24]) -> bool[src] 
fn gt(&self, other: &[T; 24]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 25][src] 
impl<T: PartialOrd> PartialOrd for [T; 25]fn partial_cmp(&self, other: &[T; 25]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 25]) -> Option<Ordering>fn lt(&self, other: &[T; 25]) -> bool[src] 
fn lt(&self, other: &[T; 25]) -> boolfn le(&self, other: &[T; 25]) -> bool[src] 
fn le(&self, other: &[T; 25]) -> boolfn ge(&self, other: &[T; 25]) -> bool[src] 
fn ge(&self, other: &[T; 25]) -> boolfn gt(&self, other: &[T; 25]) -> bool[src] 
fn gt(&self, other: &[T; 25]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 26][src] 
impl<T: PartialOrd> PartialOrd for [T; 26]fn partial_cmp(&self, other: &[T; 26]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 26]) -> Option<Ordering>fn lt(&self, other: &[T; 26]) -> bool[src] 
fn lt(&self, other: &[T; 26]) -> boolfn le(&self, other: &[T; 26]) -> bool[src] 
fn le(&self, other: &[T; 26]) -> boolfn ge(&self, other: &[T; 26]) -> bool[src] 
fn ge(&self, other: &[T; 26]) -> boolfn gt(&self, other: &[T; 26]) -> bool[src] 
fn gt(&self, other: &[T; 26]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 27][src] 
impl<T: PartialOrd> PartialOrd for [T; 27]fn partial_cmp(&self, other: &[T; 27]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 27]) -> Option<Ordering>fn lt(&self, other: &[T; 27]) -> bool[src] 
fn lt(&self, other: &[T; 27]) -> boolfn le(&self, other: &[T; 27]) -> bool[src] 
fn le(&self, other: &[T; 27]) -> boolfn ge(&self, other: &[T; 27]) -> bool[src] 
fn ge(&self, other: &[T; 27]) -> boolfn gt(&self, other: &[T; 27]) -> bool[src] 
fn gt(&self, other: &[T; 27]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 28][src] 
impl<T: PartialOrd> PartialOrd for [T; 28]fn partial_cmp(&self, other: &[T; 28]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 28]) -> Option<Ordering>fn lt(&self, other: &[T; 28]) -> bool[src] 
fn lt(&self, other: &[T; 28]) -> boolfn le(&self, other: &[T; 28]) -> bool[src] 
fn le(&self, other: &[T; 28]) -> boolfn ge(&self, other: &[T; 28]) -> bool[src] 
fn ge(&self, other: &[T; 28]) -> boolfn gt(&self, other: &[T; 28]) -> bool[src] 
fn gt(&self, other: &[T; 28]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 29][src] 
impl<T: PartialOrd> PartialOrd for [T; 29]fn partial_cmp(&self, other: &[T; 29]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 29]) -> Option<Ordering>fn lt(&self, other: &[T; 29]) -> bool[src] 
fn lt(&self, other: &[T; 29]) -> boolfn le(&self, other: &[T; 29]) -> bool[src] 
fn le(&self, other: &[T; 29]) -> boolfn ge(&self, other: &[T; 29]) -> bool[src] 
fn ge(&self, other: &[T; 29]) -> boolfn gt(&self, other: &[T; 29]) -> bool[src] 
fn gt(&self, other: &[T; 29]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 30][src] 
impl<T: PartialOrd> PartialOrd for [T; 30]fn partial_cmp(&self, other: &[T; 30]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 30]) -> Option<Ordering>fn lt(&self, other: &[T; 30]) -> bool[src] 
fn lt(&self, other: &[T; 30]) -> boolfn le(&self, other: &[T; 30]) -> bool[src] 
fn le(&self, other: &[T; 30]) -> boolfn ge(&self, other: &[T; 30]) -> bool[src] 
fn ge(&self, other: &[T; 30]) -> boolfn gt(&self, other: &[T; 30]) -> bool[src] 
fn gt(&self, other: &[T; 30]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 31][src] 
impl<T: PartialOrd> PartialOrd for [T; 31]fn partial_cmp(&self, other: &[T; 31]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 31]) -> Option<Ordering>fn lt(&self, other: &[T; 31]) -> bool[src] 
fn lt(&self, other: &[T; 31]) -> boolfn le(&self, other: &[T; 31]) -> bool[src] 
fn le(&self, other: &[T; 31]) -> boolfn ge(&self, other: &[T; 31]) -> bool[src] 
fn ge(&self, other: &[T; 31]) -> boolfn gt(&self, other: &[T; 31]) -> bool[src] 
fn gt(&self, other: &[T; 31]) -> boolimpl<T: PartialOrd> PartialOrd for [T; 32][src] 
impl<T: PartialOrd> PartialOrd for [T; 32]fn partial_cmp(&self, other: &[T; 32]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T; 32]) -> Option<Ordering>fn lt(&self, other: &[T; 32]) -> bool[src] 
fn lt(&self, other: &[T; 32]) -> boolfn le(&self, other: &[T; 32]) -> bool[src] 
fn le(&self, other: &[T; 32]) -> boolfn ge(&self, other: &[T; 32]) -> bool[src] 
fn ge(&self, other: &[T; 32]) -> boolfn gt(&self, other: &[T; 32]) -> bool[src] 
fn gt(&self, other: &[T; 32]) -> boolimpl<T: PartialOrd> PartialOrd for [T][src] 
impl<T: PartialOrd> PartialOrd for [T]Implements comparison of vectors lexicographically.
fn partial_cmp(&self, other: &[T]) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &[T]) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<T: PartialOrd, E: PartialOrd> PartialOrd for Result<T, E>[src] 
impl<T: PartialOrd, E: PartialOrd> PartialOrd for Result<T, E>fn partial_cmp(&self, other: &Result<T, E>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Result<T, E>) -> Option<Ordering>fn lt(&self, other: &Result<T, E>) -> bool[src] 
fn lt(&self, other: &Result<T, E>) -> boolfn le(&self, other: &Result<T, E>) -> bool[src] 
fn le(&self, other: &Result<T, E>) -> boolfn gt(&self, other: &Result<T, E>) -> bool[src] 
fn gt(&self, other: &Result<T, E>) -> boolfn ge(&self, other: &Result<T, E>) -> bool[src] 
fn ge(&self, other: &Result<T, E>) -> boolimpl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T>[src] 
impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T>fn partial_cmp(&self, other: &RefCell<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &RefCell<T>) -> Option<Ordering>Panics
Panics if the value in either RefCell is currently borrowed.
fn lt(&self, other: &RefCell<T>) -> bool[src] 
fn lt(&self, other: &RefCell<T>) -> boolPanics
Panics if the value in either RefCell is currently borrowed.
fn le(&self, other: &RefCell<T>) -> bool[src] 
fn le(&self, other: &RefCell<T>) -> boolPanics
Panics if the value in either RefCell is currently borrowed.
fn gt(&self, other: &RefCell<T>) -> bool[src] 
fn gt(&self, other: &RefCell<T>) -> boolPanics
Panics if the value in either RefCell is currently borrowed.
fn ge(&self, other: &RefCell<T>) -> bool[src] 
fn ge(&self, other: &RefCell<T>) -> boolPanics
Panics if the value in either RefCell is currently borrowed.
impl<T: ?Sized> PartialOrd for *const T[src] 
impl<T: ?Sized> PartialOrd for *const Tfn partial_cmp(&self, other: &*const T) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &*const T) -> Option<Ordering>fn lt(&self, other: &*const T) -> bool[src] 
fn lt(&self, other: &*const T) -> boolfn le(&self, other: &*const T) -> bool[src] 
fn le(&self, other: &*const T) -> boolfn gt(&self, other: &*const T) -> bool[src] 
fn gt(&self, other: &*const T) -> boolfn ge(&self, other: &*const T) -> bool[src] 
fn ge(&self, other: &*const T) -> boolimpl<T: ?Sized> PartialOrd for *mut T[src] 
impl<T: ?Sized> PartialOrd for *mut Tfn partial_cmp(&self, other: &*mut T) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &*mut T) -> Option<Ordering>fn lt(&self, other: &*mut T) -> bool[src] 
fn lt(&self, other: &*mut T) -> boolfn le(&self, other: &*mut T) -> bool[src] 
fn le(&self, other: &*mut T) -> boolfn gt(&self, other: &*mut T) -> bool[src] 
fn gt(&self, other: &*mut T) -> boolfn ge(&self, other: &*mut T) -> bool[src] 
fn ge(&self, other: &*mut T) -> boolimpl<T: ?Sized> PartialOrd for PhantomData<T>[src] 
impl<T: ?Sized> PartialOrd for PhantomData<T>fn partial_cmp(&self, _other: &PhantomData<T>) -> Option<Ordering>[src] 
fn partial_cmp(&self, _other: &PhantomData<T>) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<T: ?Sized> PartialOrd for NonNull<T>[src] 
impl<T: ?Sized> PartialOrd for NonNull<T>fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> bool#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> bool#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> bool#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolimpl<Y: PartialOrd, R: PartialOrd> PartialOrd for GeneratorState<Y, R>[src] 
impl<Y: PartialOrd, R: PartialOrd> PartialOrd for GeneratorState<Y, R>fn partial_cmp(&self, other: &GeneratorState<Y, R>) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &GeneratorState<Y, R>) -> Option<Ordering>fn lt(&self, other: &GeneratorState<Y, R>) -> bool[src] 
fn lt(&self, other: &GeneratorState<Y, R>) -> boolfn le(&self, other: &GeneratorState<Y, R>) -> bool[src] 
fn le(&self, other: &GeneratorState<Y, R>) -> boolfn gt(&self, other: &GeneratorState<Y, R>) -> bool[src] 
fn gt(&self, other: &GeneratorState<Y, R>) -> boolfn ge(&self, other: &GeneratorState<Y, R>) -> bool[src] 
fn ge(&self, other: &GeneratorState<Y, R>) -> bool