1.0.0[−][src]Trait sp_std::cmp::PartialOrd
Trait for values that can be compared for a sort-order.
The comparison must satisfy, for all a
, b
and c
:
- asymmetry: if
a < b
then!(a > b)
, as well asa > b
implying!(a < b)
; and - transitivity:
a < b
andb < c
impliesa < 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 derive
d on structs, it will produce a
lexicographic ordering based on the top-to-bottom declaration order of the struct's members.
When derive
d 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 } }
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: &Self) -> Option<Ordering> { self.height.partial_cmp(&other.height) } } impl PartialEq for Person { fn eq(&self, other: &Self) -> bool { self.height == other.height } }
Examples
let x : u32 = 0; let y : u32 = 1; assert_eq!(x < y, true); assert_eq!(x.lt(&y), true);
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));
When comparison is impossible:
let result = f64::NAN.partial_cmp(&1.0); assert_eq!(result, None);
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);
#[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);
#[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);
#[must_use]fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator.
Examples
let result = 2.0 >= 1.0; assert_eq!(result, true); let result = 2.0 >= 2.0; assert_eq!(result, true);
Implementations on Foreign Types
impl PartialOrd<PathBuf> for PathBuf
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for OsStr
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Path> for OsString
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<PathBuf> for &'a Path
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for PathBuf
[src]
impl<'a, 'b> PartialOrd<&'a OsStr> for OsString
[src]
fn partial_cmp(&self, other: &&'a OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for OsString
[src]
impl<'a, 'b> PartialOrd<OsStr> for OsString
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl PartialOrd<str> for OsString
[src]
fn partial_cmp(&self, other: &str) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'a Path> for OsString
[src]
fn partial_cmp(&self, other: &&'a Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsStr
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b OsStr
[src]
impl<'a, 'b> PartialOrd<PathBuf> for &'a OsStr
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'b, OsStr>> for &'a Path
[src]
impl<'a> PartialOrd<Components<'a>> for Components<'a>
[src]
fn partial_cmp(&self, other: &Components<'a>) -> Option<Ordering>
[src]
impl<'a> PartialOrd<Component<'a>> for Component<'a>
[src]
fn partial_cmp(&self, other: &Component<'a>) -> Option<Ordering>
[src]
fn lt(&self, other: &Component<'a>) -> bool
[src]
fn le(&self, other: &Component<'a>) -> bool
[src]
fn gt(&self, other: &Component<'a>) -> bool
[src]
fn ge(&self, other: &Component<'a>) -> bool
[src]
impl PartialOrd<SocketAddrV4> for SocketAddrV4
[src]
fn partial_cmp(&self, other: &SocketAddrV4) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for PathBuf
[src]
impl<'a, 'b> PartialOrd<PathBuf> for OsStr
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for PathBuf
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for Path
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Path> for OsStr
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsStr> for &'a Path
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl PartialOrd<str> for OsStr
[src]
fn partial_cmp(&self, other: &str) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for Path
[src]
impl<'a, 'b> PartialOrd<OsString> for &'a Path
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl PartialOrd<Instant> for Instant
[src]
fn partial_cmp(&self, other: &Instant) -> Option<Ordering>
[src]
fn lt(&self, other: &Instant) -> bool
[src]
fn le(&self, other: &Instant) -> bool
[src]
fn gt(&self, other: &Instant) -> bool
[src]
fn ge(&self, other: &Instant) -> bool
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for Path
[src]
impl PartialOrd<Path> for Path
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl PartialOrd<IpAddr> for IpAddr
[src]
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering>
[src]
fn lt(&self, other: &IpAddr) -> bool
[src]
fn le(&self, other: &IpAddr) -> bool
[src]
fn gt(&self, other: &IpAddr) -> bool
[src]
fn ge(&self, other: &IpAddr) -> bool
[src]
impl<'a, 'b> PartialOrd<&'a Path> for PathBuf
[src]
fn partial_cmp(&self, other: &&'a Path) -> Option<Ordering>
[src]
impl PartialOrd<SocketAddr> for SocketAddr
[src]
fn partial_cmp(&self, other: &SocketAddr) -> Option<Ordering>
[src]
fn lt(&self, other: &SocketAddr) -> bool
[src]
fn le(&self, other: &SocketAddr) -> bool
[src]
fn gt(&self, other: &SocketAddr) -> bool
[src]
fn ge(&self, other: &SocketAddr) -> bool
[src]
impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>
[src]
fn partial_cmp(&self, other: &PrefixComponent<'a>) -> Option<Ordering>
[src]
impl PartialOrd<SocketAddrV6> for SocketAddrV6
[src]
fn partial_cmp(&self, other: &SocketAddrV6) -> Option<Ordering>
[src]
impl PartialOrd<ErrorKind> for ErrorKind
[src]
fn partial_cmp(&self, other: &ErrorKind) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b Path
[src]
impl<'a, 'b> PartialOrd<&'a OsStr> for Path
[src]
fn partial_cmp(&self, other: &&'a OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Path> for PathBuf
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>
[src]
fn partial_cmp(&self, other: &Prefix<'a>) -> Option<Ordering>
[src]
fn lt(&self, other: &Prefix<'a>) -> bool
[src]
fn le(&self, other: &Prefix<'a>) -> bool
[src]
fn gt(&self, other: &Prefix<'a>) -> bool
[src]
fn ge(&self, other: &Prefix<'a>) -> bool
[src]
impl PartialOrd<IpAddr> for Ipv4Addr
[src]
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<PathBuf> for Path
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Cow<'a, Path>> for OsStr
[src]
impl<'a, 'b> PartialOrd<Path> for &'a OsStr
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsStr> for Path
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl PartialOrd<SystemTime> for SystemTime
[src]
fn partial_cmp(&self, other: &SystemTime) -> Option<Ordering>
[src]
fn lt(&self, other: &SystemTime) -> bool
[src]
fn le(&self, other: &SystemTime) -> bool
[src]
fn gt(&self, other: &SystemTime) -> bool
[src]
fn ge(&self, other: &SystemTime) -> bool
[src]
impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for &'b OsStr
[src]
impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsString
[src]
impl<'a, 'b> PartialOrd<PathBuf> for OsString
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl PartialOrd<OsString> for OsString
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
fn lt(&self, other: &OsString) -> bool
[src]
fn le(&self, other: &OsString) -> bool
[src]
fn gt(&self, other: &OsString) -> bool
[src]
fn ge(&self, other: &OsString) -> bool
[src]
impl PartialOrd<OsStr> for OsStr
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
fn lt(&self, other: &OsStr) -> bool
[src]
fn le(&self, other: &OsStr) -> bool
[src]
fn gt(&self, other: &OsStr) -> bool
[src]
fn ge(&self, other: &OsStr) -> bool
[src]
impl PartialOrd<CStr> for CStr
[src]
fn partial_cmp(&self, other: &CStr) -> Option<Ordering>
[src]
impl PartialOrd<Ipv4Addr> for Ipv4Addr
[src]
fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsStr> for PathBuf
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl PartialOrd<Ipv6Addr> for IpAddr
[src]
fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for &'a OsStr
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl PartialOrd<CString> for CString
[src]
fn partial_cmp(&self, other: &CString) -> Option<Ordering>
[src]
fn lt(&self, other: &CString) -> bool
[src]
fn le(&self, other: &CString) -> bool
[src]
fn gt(&self, other: &CString) -> bool
[src]
fn ge(&self, other: &CString) -> bool
[src]
impl PartialOrd<IpAddr> for Ipv6Addr
[src]
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering>
[src]
impl PartialOrd<Ipv6Addr> for Ipv6Addr
[src]
fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'a Path> for OsStr
[src]
fn partial_cmp(&self, other: &&'a Path) -> Option<Ordering>
[src]
impl PartialOrd<Ipv4Addr> for IpAddr
[src]
fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'a OsStr> for PathBuf
[src]
fn partial_cmp(&self, other: &&'a OsStr) -> Option<Ordering>
[src]
impl<Ret, A, B, C> PartialOrd<unsafe extern "C" fn(A, B, C, ...) -> Ret> for unsafe extern "C" fn(A, B, C, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, ...) -> Ret
) -> Option<Ordering>
impl<Ret> PartialOrd<fn() -> Ret> for fn() -> Ret
[src]
fn partial_cmp(&self, other: &fn() -> Ret) -> Option<Ordering>
[src]
impl<Ret, A> PartialOrd<fn(A) -> Ret> for fn(A) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C> PartialOrd<extern "C" fn(A, B, C) -> Ret> for extern "C" fn(A, B, C) -> Ret
[src]
fn partial_cmp(&self, other: &extern "C" fn(A, B, C) -> Ret) -> Option<Ordering>
[src]
impl<A, B, C, D, E, F, G, H> PartialOrd<(A, B, C, D, E, F, G, H)> for (A, B, C, D, E, F, G, H) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C, D, E, F, G, H)) -> bool
[src]
fn le(&self, other: &(A, B, C, D, E, F, G, H)) -> bool
[src]
fn ge(&self, other: &(A, B, C, D, E, F, G, H)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F, G, H)) -> bool
[src]
impl<Ret, A, B, C, D, E> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E> PartialOrd<fn(A, B, C, D, E) -> Ret> for fn(A, B, C, D, E) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A, B, C, D, E) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A> PartialOrd<unsafe extern "C" fn(A) -> Ret> for unsafe extern "C" fn(A) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G> PartialOrd<unsafe fn(A, B, C, D, E, F, G) -> Ret> for unsafe fn(A, B, C, D, E, F, G) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D> PartialOrd<unsafe extern "C" fn(A, B, C, D, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, ...) -> Ret
) -> Option<Ordering>
impl<P, Q> PartialOrd<Pin<Q>> for Pin<P> where
P: Deref,
Q: Deref,
<P as Deref>::Target: PartialOrd<<Q as Deref>::Target>,
[src]
P: Deref,
Q: Deref,
<P as Deref>::Target: PartialOrd<<Q as Deref>::Target>,
fn partial_cmp(&self, other: &Pin<Q>) -> Option<Ordering>
[src]
fn lt(&self, other: &Pin<Q>) -> bool
[src]
fn le(&self, other: &Pin<Q>) -> bool
[src]
fn gt(&self, other: &Pin<Q>) -> bool
[src]
fn ge(&self, other: &Pin<Q>) -> bool
[src]
impl<A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<(A, B, C, D, E, F, G, H, I, J, K, L)> for (A, B, C, D, E, F, G, H, I, J, K, L) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J>,
K: PartialEq<K> + PartialOrd<K>,
L: PartialEq<L> + PartialOrd<L> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J>,
K: PartialEq<K> + PartialOrd<K>,
L: PartialEq<L> + PartialOrd<L> + ?Sized,
fn partial_cmp(
&self,
other: &(A, B, C, D, E, F, G, H, I, J, K, L)
) -> Option<Ordering>
[src]
&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 le(&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)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K, L)) -> bool
[src]
impl<A, B, C, D, E, F, G, H, I, J> PartialOrd<(A, B, C, D, E, F, G, H, I, J)> for (A, B, C, D, E, F, G, H, I, J) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J> + ?Sized,
fn partial_cmp(
&self,
other: &(A, B, C, D, E, F, G, H, I, J)
) -> Option<Ordering>
[src]
&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 le(&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)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J)) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
) -> Option<Ordering>
impl PartialOrd<CpuidResult> for CpuidResult
[src]
fn partial_cmp(&self, other: &CpuidResult) -> Option<Ordering>
[src]
fn lt(&self, other: &CpuidResult) -> bool
[src]
fn le(&self, other: &CpuidResult) -> bool
[src]
fn gt(&self, other: &CpuidResult) -> bool
[src]
fn ge(&self, other: &CpuidResult) -> bool
[src]
impl<Ret, A, B, C> PartialOrd<unsafe fn(A, B, C) -> Ret> for unsafe fn(A, B, C) -> Ret
[src]
fn partial_cmp(&self, other: &unsafe fn(A, B, C) -> Ret) -> Option<Ordering>
[src]
impl PartialOrd<u32> for u32
[src]
fn partial_cmp(&self, other: &u32) -> Option<Ordering>
[src]
fn lt(&self, other: &u32) -> bool
[src]
fn le(&self, other: &u32) -> bool
[src]
fn ge(&self, other: &u32) -> bool
[src]
fn gt(&self, other: &u32) -> bool
[src]
impl<Ret, A, B> PartialOrd<unsafe extern "C" fn(A, B, ...) -> Ret> for unsafe extern "C" fn(A, B, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A> PartialOrd<extern "C" fn(A) -> Ret> for extern "C" fn(A) -> Ret
[src]
fn partial_cmp(&self, other: &extern "C" fn(A) -> Ret) -> Option<Ordering>
[src]
impl<A, B> PartialOrd<(A, B)> for (A, B) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B> + ?Sized,
fn partial_cmp(&self, other: &(A, B)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B)) -> bool
[src]
fn le(&self, other: &(A, B)) -> bool
[src]
fn ge(&self, other: &(A, B)) -> bool
[src]
fn gt(&self, other: &(A, B)) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G> PartialOrd<extern "C" fn(A, B, C, D, E, F, G) -> Ret> for extern "C" fn(A, B, C, D, E, F, G) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
impl<A> PartialOrd<(A,)> for (A,) where
A: PartialEq<A> + PartialOrd<A> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A> + ?Sized,
fn partial_cmp(&self, other: &(A,)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A,)) -> bool
[src]
fn le(&self, other: &(A,)) -> bool
[src]
fn ge(&self, other: &(A,)) -> bool
[src]
fn gt(&self, other: &(A,)) -> bool
[src]
impl PartialOrd<i16> for i16
[src]
fn partial_cmp(&self, other: &i16) -> Option<Ordering>
[src]
fn lt(&self, other: &i16) -> bool
[src]
fn le(&self, other: &i16) -> bool
[src]
fn ge(&self, other: &i16) -> bool
[src]
fn gt(&self, other: &i16) -> bool
[src]
impl PartialOrd<isize> for isize
[src]
fn partial_cmp(&self, other: &isize) -> Option<Ordering>
[src]
fn lt(&self, other: &isize) -> bool
[src]
fn le(&self, other: &isize) -> bool
[src]
fn ge(&self, other: &isize) -> bool
[src]
fn gt(&self, other: &isize) -> bool
[src]
impl PartialOrd<i64> for i64
[src]
fn partial_cmp(&self, other: &i64) -> Option<Ordering>
[src]
fn lt(&self, other: &i64) -> bool
[src]
fn le(&self, other: &i64) -> bool
[src]
fn ge(&self, other: &i64) -> bool
[src]
fn gt(&self, other: &i64) -> bool
[src]
impl<Ret, A, B, C, D, E> PartialOrd<extern "C" fn(A, B, C, D, E) -> Ret> for extern "C" fn(A, B, C, D, E) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
impl PartialOrd<bool> for bool
[src]
fn partial_cmp(&self, other: &bool) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
impl<Ret> PartialOrd<unsafe extern "C" fn() -> Ret> for unsafe extern "C" fn() -> Ret
[src]
fn partial_cmp(&self, other: &unsafe extern "C" fn() -> Ret) -> Option<Ordering>
[src]
impl PartialOrd<f64> for f64
[src]
fn partial_cmp(&self, other: &f64) -> Option<Ordering>
[src]
fn lt(&self, other: &f64) -> bool
[src]
fn le(&self, other: &f64) -> bool
[src]
fn ge(&self, other: &f64) -> bool
[src]
fn gt(&self, other: &f64) -> bool
[src]
impl<A, B, C, D, E, F, G, H, I> PartialOrd<(A, B, C, D, E, F, G, H, I)> for (A, B, C, D, E, F, G, H, I) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G, H, I)) -> Option<Ordering>
[src]
fn lt(&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)) -> bool
[src]
fn ge(&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)) -> bool
[src]
impl PartialOrd<i32> for i32
[src]
fn partial_cmp(&self, other: &i32) -> Option<Ordering>
[src]
fn lt(&self, other: &i32) -> bool
[src]
fn le(&self, other: &i32) -> bool
[src]
fn ge(&self, other: &i32) -> bool
[src]
fn gt(&self, other: &i32) -> bool
[src]
impl<A, B, C, D, E> PartialOrd<(A, B, C, D, E)> for (A, B, C, D, E) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D, E)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C, D, E)) -> bool
[src]
fn le(&self, other: &(A, B, C, D, E)) -> bool
[src]
fn ge(&self, other: &(A, B, C, D, E)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E)) -> bool
[src]
impl PartialOrd<i128> for i128
[src]
fn partial_cmp(&self, other: &i128) -> Option<Ordering>
[src]
fn lt(&self, other: &i128) -> bool
[src]
fn le(&self, other: &i128) -> bool
[src]
fn ge(&self, other: &i128) -> bool
[src]
fn gt(&self, other: &i128) -> bool
[src]
impl<Ret, A, B> PartialOrd<extern "C" fn(A, B, ...) -> Ret> for extern "C" fn(A, B, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
) -> Option<Ordering>
impl<'_, '_, A, B> PartialOrd<&'_ B> for &'_ A where
A: PartialOrd<B> + ?Sized,
B: ?Sized,
[src]
A: PartialOrd<B> + ?Sized,
B: ?Sized,
fn partial_cmp(&self, other: &&B) -> Option<Ordering>
[src]
fn lt(&self, other: &&B) -> bool
[src]
fn le(&self, other: &&B) -> bool
[src]
fn gt(&self, other: &&B) -> bool
[src]
fn ge(&self, other: &&B) -> bool
[src]
impl<A, B, C> PartialOrd<(A, B, C)> for (A, B, C) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C)) -> bool
[src]
fn le(&self, other: &(A, B, C)) -> bool
[src]
fn ge(&self, other: &(A, B, C)) -> bool
[src]
fn gt(&self, other: &(A, B, C)) -> bool
[src]
impl PartialOrd<char> for char
[src]
fn partial_cmp(&self, other: &char) -> Option<Ordering>
[src]
fn lt(&self, other: &char) -> bool
[src]
fn le(&self, other: &char) -> bool
[src]
fn ge(&self, other: &char) -> bool
[src]
fn gt(&self, other: &char) -> bool
[src]
impl<Ret, A, B> PartialOrd<fn(A, B) -> Ret> for fn(A, B) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A, B) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F> PartialOrd<unsafe fn(A, B, C, D, E, F) -> Ret> for unsafe fn(A, B, C, D, E, F) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<fn(A, B, C, D, E, F, G, H) -> Ret> for fn(A, B, C, D, E, F, G, H) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret> for fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<unsafe fn(A, B, C, D, E, F, G, H) -> Ret> for unsafe fn(A, B, C, D, E, F, G, H) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
impl<A, B, C, D> PartialOrd<(A, B, C, D)> for (A, B, C, D) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C, D)) -> bool
[src]
fn le(&self, other: &(A, B, C, D)) -> bool
[src]
fn ge(&self, other: &(A, B, C, D)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D)) -> bool
[src]
impl<Ret, A, B, C, D> PartialOrd<unsafe extern "C" fn(A, B, C, D) -> Ret> for unsafe extern "C" fn(A, B, C, D) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D) -> Ret
) -> Option<Ordering>
impl<'_, '_, A, B> PartialOrd<&'_ mut B> for &'_ mut A where
A: PartialOrd<B> + ?Sized,
B: ?Sized,
[src]
A: PartialOrd<B> + ?Sized,
B: ?Sized,
fn partial_cmp(&self, other: &&mut B) -> Option<Ordering>
[src]
fn lt(&self, other: &&mut B) -> bool
[src]
fn le(&self, other: &&mut B) -> bool
[src]
fn gt(&self, other: &&mut B) -> bool
[src]
fn ge(&self, other: &&mut B) -> bool
[src]
impl<Ret, A, B, C, D> PartialOrd<extern "C" fn(A, B, C, D, ...) -> Ret> for extern "C" fn(A, B, C, D, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A> PartialOrd<extern "C" fn(A, ...) -> Ret> for extern "C" fn(A, ...) -> Ret
[src]
fn partial_cmp(&self, other: &extern "C" fn(A, ...) -> Ret) -> Option<Ordering>
[src]
impl<T> PartialOrd<*mut T> for *mut T where
T: ?Sized,
[src]
T: ?Sized,
fn partial_cmp(&self, other: &*mut T) -> Option<Ordering>
[src]
fn lt(&self, other: &*mut T) -> bool
[src]
fn le(&self, other: &*mut T) -> bool
[src]
fn gt(&self, other: &*mut T) -> bool
[src]
fn ge(&self, other: &*mut T) -> bool
[src]
impl<Ret, A, B, C> PartialOrd<unsafe extern "C" fn(A, B, C) -> Ret> for unsafe extern "C" fn(A, B, C) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
impl<Ret, A> PartialOrd<unsafe extern "C" fn(A, ...) -> Ret> for unsafe extern "C" fn(A, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, ...) -> Ret
) -> Option<Ordering>
impl<A, B, C, D, E, F> PartialOrd<(A, B, C, D, E, F)> for (A, B, C, D, E, F) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D, E, F)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C, D, E, F)) -> bool
[src]
fn le(&self, other: &(A, B, C, D, E, F)) -> bool
[src]
fn ge(&self, other: &(A, B, C, D, E, F)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F)) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> PartialOrd<unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret> for unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E> PartialOrd<extern "C" fn(A, B, C, D, E, ...) -> Ret> for extern "C" fn(A, B, C, D, E, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
impl<T> PartialOrd<Poll<T>> for Poll<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &Poll<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Poll<T>) -> bool
[src]
fn le(&self, other: &Poll<T>) -> bool
[src]
fn gt(&self, other: &Poll<T>) -> bool
[src]
fn ge(&self, other: &Poll<T>) -> bool
[src]
impl<Ret, A> PartialOrd<unsafe fn(A) -> Ret> for unsafe fn(A) -> Ret
[src]
fn partial_cmp(&self, other: &unsafe fn(A) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E> PartialOrd<unsafe fn(A, B, C, D, E) -> Ret> for unsafe fn(A, B, C, D, E) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
impl PartialOrd<u128> for u128
[src]
fn partial_cmp(&self, other: &u128) -> Option<Ordering>
[src]
fn lt(&self, other: &u128) -> bool
[src]
fn le(&self, other: &u128) -> bool
[src]
fn ge(&self, other: &u128) -> bool
[src]
fn gt(&self, other: &u128) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret> for unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C> PartialOrd<fn(A, B, C) -> Ret> for fn(A, B, C) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A, B, C) -> Ret) -> Option<Ordering>
[src]
impl PartialOrd<usize> for usize
[src]
fn partial_cmp(&self, other: &usize) -> Option<Ordering>
[src]
fn lt(&self, other: &usize) -> bool
[src]
fn le(&self, other: &usize) -> bool
[src]
fn ge(&self, other: &usize) -> bool
[src]
fn gt(&self, other: &usize) -> bool
[src]
impl PartialOrd<!> for !
[src]
fn partial_cmp(&self, &!) -> Option<Ordering>
[src]
impl PartialOrd<Duration> for Duration
[src]
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>
[src]
fn lt(&self, other: &Duration) -> bool
[src]
fn le(&self, other: &Duration) -> bool
[src]
fn gt(&self, other: &Duration) -> bool
[src]
fn ge(&self, other: &Duration) -> bool
[src]
impl<Ret, A, B, C, D, E> PartialOrd<unsafe extern "C" fn(A, B, C, D, E) -> Ret> for unsafe extern "C" fn(A, B, C, D, E) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E) -> Ret
) -> Option<Ordering>
impl<Ret, A, B> PartialOrd<unsafe fn(A, B) -> Ret> for unsafe fn(A, B) -> Ret
[src]
fn partial_cmp(&self, other: &unsafe fn(A, B) -> Ret) -> Option<Ordering>
[src]
impl<A, B, C, D, E, F, G> PartialOrd<(A, B, C, D, E, F, G)> for (A, B, C, D, E, F, G) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G> + ?Sized,
fn partial_cmp(&self, other: &(A, B, C, D, E, F, G)) -> Option<Ordering>
[src]
fn lt(&self, other: &(A, B, C, D, E, F, G)) -> bool
[src]
fn le(&self, other: &(A, B, C, D, E, F, G)) -> bool
[src]
fn ge(&self, other: &(A, B, C, D, E, F, G)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F, G)) -> bool
[src]
impl PartialOrd<f32> for f32
[src]
fn partial_cmp(&self, other: &f32) -> Option<Ordering>
[src]
fn lt(&self, other: &f32) -> bool
[src]
fn le(&self, other: &f32) -> bool
[src]
fn ge(&self, other: &f32) -> bool
[src]
fn gt(&self, other: &f32) -> bool
[src]
impl<Ret, A, B, C, D, E, F> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
impl<Ret> PartialOrd<extern "C" fn() -> Ret> for extern "C" fn() -> Ret
[src]
fn partial_cmp(&self, other: &extern "C" fn() -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D> PartialOrd<extern "C" fn(A, B, C, D) -> Ret> for extern "C" fn(A, B, C, D) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D) -> Ret
) -> Option<Ordering>
impl<T> PartialOrd<Option<T>> for Option<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &Option<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Option<T>) -> bool
[src]
fn le(&self, other: &Option<T>) -> bool
[src]
fn gt(&self, other: &Option<T>) -> bool
[src]
fn ge(&self, other: &Option<T>) -> bool
[src]
impl<Ret, A, B, C, D, E, F> PartialOrd<extern "C" fn(A, B, C, D, E, F) -> Ret> for extern "C" fn(A, B, C, D, E, F) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F) -> Ret
) -> Option<Ordering>
impl PartialOrd<u8> for u8
[src]
fn partial_cmp(&self, other: &u8) -> Option<Ordering>
[src]
fn lt(&self, other: &u8) -> bool
[src]
fn le(&self, other: &u8) -> bool
[src]
fn ge(&self, other: &u8) -> bool
[src]
fn gt(&self, other: &u8) -> bool
[src]
impl PartialOrd<i8> for i8
[src]
fn partial_cmp(&self, other: &i8) -> Option<Ordering>
[src]
fn lt(&self, other: &i8) -> bool
[src]
fn le(&self, other: &i8) -> bool
[src]
fn ge(&self, other: &i8) -> bool
[src]
fn gt(&self, other: &i8) -> bool
[src]
impl<Ret, A, B, C, D> PartialOrd<unsafe fn(A, B, C, D) -> Ret> for unsafe fn(A, B, C, D) -> Ret
[src]
fn partial_cmp(&self, other: &unsafe fn(A, B, C, D) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
) -> Option<Ordering>
impl PartialOrd<NoneError> for NoneError
[src]
fn partial_cmp(&self, other: &NoneError) -> Option<Ordering>
[src]
impl PartialOrd<()> for ()
[src]
fn partial_cmp(&self, &()) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<fn(A, B, C, D, E, F, G, H, I, J) -> Ret> for fn(A, B, C, D, E, F, G, H, I, J) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
impl<Ret, A, B> PartialOrd<unsafe extern "C" fn(A, B) -> Ret> for unsafe extern "C" fn(A, B) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G> PartialOrd<fn(A, B, C, D, E, F, G) -> Ret> for fn(A, B, C, D, E, F, G) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
impl<A, B, C, D, E, F, G, H, I, J, K> PartialOrd<(A, B, C, D, E, F, G, H, I, J, K)> for (A, B, C, D, E, F, G, H, I, J, K) where
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J>,
K: PartialEq<K> + PartialOrd<K> + ?Sized,
[src]
A: PartialEq<A> + PartialOrd<A>,
B: PartialEq<B> + PartialOrd<B>,
C: PartialEq<C> + PartialOrd<C>,
D: PartialEq<D> + PartialOrd<D>,
E: PartialEq<E> + PartialOrd<E>,
F: PartialEq<F> + PartialOrd<F>,
G: PartialEq<G> + PartialOrd<G>,
H: PartialEq<H> + PartialOrd<H>,
I: PartialEq<I> + PartialOrd<I>,
J: PartialEq<J> + PartialOrd<J>,
K: PartialEq<K> + PartialOrd<K> + ?Sized,
fn partial_cmp(
&self,
other: &(A, B, C, D, E, F, G, H, I, J, K)
) -> Option<Ordering>
[src]
&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 le(&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)) -> bool
[src]
fn gt(&self, other: &(A, B, C, D, E, F, G, H, I, J, K)) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F> PartialOrd<fn(A, B, C, D, E, F) -> Ret> for fn(A, B, C, D, E, F) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A, B, C, D, E, F) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret
) -> Option<Ordering>
impl PartialOrd<u16> for u16
[src]
fn partial_cmp(&self, other: &u16) -> Option<Ordering>
[src]
fn lt(&self, other: &u16) -> bool
[src]
fn le(&self, other: &u16) -> bool
[src]
fn ge(&self, other: &u16) -> bool
[src]
fn gt(&self, other: &u16) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret> for unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
impl<'a> PartialOrd<Location<'a>> for Location<'a>
[src]
fn partial_cmp(&self, other: &Location<'a>) -> Option<Ordering>
[src]
fn lt(&self, other: &Location<'a>) -> bool
[src]
fn le(&self, other: &Location<'a>) -> bool
[src]
fn gt(&self, other: &Location<'a>) -> bool
[src]
fn ge(&self, other: &Location<'a>) -> bool
[src]
impl PartialOrd<str> for str
[src]
Implements 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]
impl<T> PartialOrd<*const T> for *const T where
T: ?Sized,
[src]
T: ?Sized,
fn partial_cmp(&self, other: &*const T) -> Option<Ordering>
[src]
fn lt(&self, other: &*const T) -> bool
[src]
fn le(&self, other: &*const T) -> bool
[src]
fn gt(&self, other: &*const T) -> bool
[src]
fn ge(&self, other: &*const T) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B> PartialOrd<extern "C" fn(A, B) -> Ret> for extern "C" fn(A, B) -> Ret
[src]
fn partial_cmp(&self, other: &extern "C" fn(A, B) -> Ret) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret> for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
) -> Option<Ordering>
impl<Ret> PartialOrd<unsafe fn() -> Ret> for unsafe fn() -> Ret
[src]
fn partial_cmp(&self, other: &unsafe fn() -> Ret) -> Option<Ordering>
[src]
impl PartialOrd<u64> for u64
[src]
fn partial_cmp(&self, other: &u64) -> Option<Ordering>
[src]
fn lt(&self, other: &u64) -> bool
[src]
fn le(&self, other: &u64) -> bool
[src]
fn ge(&self, other: &u64) -> bool
[src]
fn gt(&self, other: &u64) -> bool
[src]
impl<Ret, A, B, C, D> PartialOrd<fn(A, B, C, D) -> Ret> for fn(A, B, C, D) -> Ret
[src]
fn partial_cmp(&self, other: &fn(A, B, C, D) -> Ret) -> Option<Ordering>
[src]
impl<T, const N: usize> PartialOrd<[T; N]> for [T; N] where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &[T; N]) -> Option<Ordering>
[src]
fn lt(&self, other: &[T; N]) -> bool
[src]
fn le(&self, other: &[T; N]) -> bool
[src]
fn ge(&self, other: &[T; N]) -> bool
[src]
fn gt(&self, other: &[T; N]) -> bool
[src]
impl<Ret, A, B, C, D, E, F, G, H> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> PartialOrd<fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret> for fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F> PartialOrd<extern "C" fn(A, B, C, D, E, F, ...) -> Ret> for extern "C" fn(A, B, C, D, E, F, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, ...) -> Ret
) -> Option<Ordering>
impl<T> PartialOrd<[T]> for [T] where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
Implements comparison of vectors lexicographically.
fn partial_cmp(&self, other: &[T]) -> Option<Ordering>
[src]
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret> for unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret
[src]
fn partial_cmp(
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C> PartialOrd<extern "C" fn(A, B, C, ...) -> Ret> for extern "C" fn(A, B, C, ...) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, ...) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, ...) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I, J> PartialOrd<extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret> for extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
[src]
fn partial_cmp(
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
) -> Option<Ordering>
impl<Ret, A, B, C, D, E, F, G, H, I> PartialOrd<fn(A, B, C, D, E, F, G, H, I) -> Ret> for fn(A, B, C, D, E, F, G, H, I) -> Ret
[src]
fn partial_cmp(
&self,
other: &fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
[src]
&self,
other: &fn(A, B, C, D, E, F, G, H, I) -> Ret
) -> Option<Ordering>
impl<T> PartialOrd<LinkedList<T>> for LinkedList<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &LinkedList<T>) -> Option<Ordering>
[src]
impl PartialOrd<String> for String
[src]
fn partial_cmp(&self, other: &String) -> Option<Ordering>
[src]
fn lt(&self, other: &String) -> bool
[src]
fn le(&self, other: &String) -> bool
[src]
fn gt(&self, other: &String) -> bool
[src]
fn ge(&self, other: &String) -> bool
[src]
impl PartialOrd<DwCfa> for DwCfa
fn partial_cmp(&self, other: &DwCfa) -> Option<Ordering>
fn lt(&self, other: &DwCfa) -> bool
fn le(&self, other: &DwCfa) -> bool
fn gt(&self, other: &DwCfa) -> bool
fn ge(&self, other: &DwCfa) -> bool
impl PartialOrd<DwLang> for DwLang
fn partial_cmp(&self, other: &DwLang) -> Option<Ordering>
fn lt(&self, other: &DwLang) -> bool
fn le(&self, other: &DwLang) -> bool
fn gt(&self, other: &DwLang) -> bool
fn ge(&self, other: &DwLang) -> bool
impl<T> PartialOrd<DebugTypesOffset<T>> for DebugTypesOffset<T> where
T: PartialOrd<T>,
T: PartialOrd<T>,
fn partial_cmp(&self, other: &DebugTypesOffset<T>) -> Option<Ordering>
fn lt(&self, other: &DebugTypesOffset<T>) -> bool
fn le(&self, other: &DebugTypesOffset<T>) -> bool
fn gt(&self, other: &DebugTypesOffset<T>) -> bool
fn ge(&self, other: &DebugTypesOffset<T>) -> bool
impl PartialOrd<DwEnd> for DwEnd
fn partial_cmp(&self, other: &DwEnd) -> Option<Ordering>
fn lt(&self, other: &DwEnd) -> bool
fn le(&self, other: &DwEnd) -> bool
fn gt(&self, other: &DwEnd) -> bool
fn ge(&self, other: &DwEnd) -> bool
impl PartialOrd<DwOp> for DwOp
fn partial_cmp(&self, other: &DwOp) -> Option<Ordering>
fn lt(&self, other: &DwOp) -> bool
fn le(&self, other: &DwOp) -> bool
fn gt(&self, other: &DwOp) -> bool
fn ge(&self, other: &DwOp) -> bool
impl PartialOrd<DwLns> for DwLns
fn partial_cmp(&self, other: &DwLns) -> Option<Ordering>
fn lt(&self, other: &DwLns) -> bool
fn le(&self, other: &DwLns) -> bool
fn gt(&self, other: &DwLns) -> bool
fn ge(&self, other: &DwLns) -> bool
impl PartialOrd<DwCc> for DwCc
fn partial_cmp(&self, other: &DwCc) -> Option<Ordering>
fn lt(&self, other: &DwCc) -> bool
fn le(&self, other: &DwCc) -> bool
fn gt(&self, other: &DwCc) -> bool
fn ge(&self, other: &DwCc) -> bool
impl PartialOrd<DwLnct> for DwLnct
fn partial_cmp(&self, other: &DwLnct) -> Option<Ordering>
fn lt(&self, other: &DwLnct) -> bool
fn le(&self, other: &DwLnct) -> bool
fn gt(&self, other: &DwLnct) -> bool
fn ge(&self, other: &DwLnct) -> bool
impl PartialOrd<SectionId> for SectionId
fn partial_cmp(&self, other: &SectionId) -> Option<Ordering>
impl PartialOrd<ColumnType> for ColumnType
fn partial_cmp(&self, other: &ColumnType) -> Option<Ordering>
fn lt(&self, other: &ColumnType) -> bool
fn le(&self, other: &ColumnType) -> bool
fn gt(&self, other: &ColumnType) -> bool
fn ge(&self, other: &ColumnType) -> bool
impl PartialOrd<DwForm> for DwForm
fn partial_cmp(&self, other: &DwForm) -> Option<Ordering>
fn lt(&self, other: &DwForm) -> bool
fn le(&self, other: &DwForm) -> bool
fn gt(&self, other: &DwForm) -> bool
fn ge(&self, other: &DwForm) -> bool
impl PartialOrd<DwDs> for DwDs
fn partial_cmp(&self, other: &DwDs) -> Option<Ordering>
fn lt(&self, other: &DwDs) -> bool
fn le(&self, other: &DwDs) -> bool
fn gt(&self, other: &DwDs) -> bool
fn ge(&self, other: &DwDs) -> bool
impl PartialOrd<DwAte> for DwAte
fn partial_cmp(&self, other: &DwAte) -> Option<Ordering>
fn lt(&self, other: &DwAte) -> bool
fn le(&self, other: &DwAte) -> bool
fn gt(&self, other: &DwAte) -> bool
fn ge(&self, other: &DwAte) -> bool
impl PartialOrd<DwAccess> for DwAccess
fn partial_cmp(&self, other: &DwAccess) -> Option<Ordering>
fn lt(&self, other: &DwAccess) -> bool
fn le(&self, other: &DwAccess) -> bool
fn gt(&self, other: &DwAccess) -> bool
fn ge(&self, other: &DwAccess) -> bool
impl PartialOrd<DwDsc> for DwDsc
fn partial_cmp(&self, other: &DwDsc) -> Option<Ordering>
fn lt(&self, other: &DwDsc) -> bool
fn le(&self, other: &DwDsc) -> bool
fn gt(&self, other: &DwDsc) -> bool
fn ge(&self, other: &DwDsc) -> bool
impl PartialOrd<DwOrd> for DwOrd
fn partial_cmp(&self, other: &DwOrd) -> Option<Ordering>
fn lt(&self, other: &DwOrd) -> bool
fn le(&self, other: &DwOrd) -> bool
fn gt(&self, other: &DwOrd) -> bool
fn ge(&self, other: &DwOrd) -> bool
impl PartialOrd<DwVis> for DwVis
fn partial_cmp(&self, other: &DwVis) -> Option<Ordering>
fn lt(&self, other: &DwVis) -> bool
fn le(&self, other: &DwVis) -> bool
fn gt(&self, other: &DwVis) -> bool
fn ge(&self, other: &DwVis) -> bool
impl PartialOrd<DwRle> for DwRle
fn partial_cmp(&self, other: &DwRle) -> Option<Ordering>
fn lt(&self, other: &DwRle) -> bool
fn le(&self, other: &DwRle) -> bool
fn gt(&self, other: &DwRle) -> bool
fn ge(&self, other: &DwRle) -> bool
impl PartialOrd<DwEhPe> for DwEhPe
fn partial_cmp(&self, other: &DwEhPe) -> Option<Ordering>
fn lt(&self, other: &DwEhPe) -> bool
fn le(&self, other: &DwEhPe) -> bool
fn gt(&self, other: &DwEhPe) -> bool
fn ge(&self, other: &DwEhPe) -> bool
impl PartialOrd<DwLne> for DwLne
fn partial_cmp(&self, other: &DwLne) -> Option<Ordering>
fn lt(&self, other: &DwLne) -> bool
fn le(&self, other: &DwLne) -> bool
fn gt(&self, other: &DwLne) -> bool
fn ge(&self, other: &DwLne) -> bool
impl PartialOrd<DwId> for DwId
fn partial_cmp(&self, other: &DwId) -> Option<Ordering>
fn lt(&self, other: &DwId) -> bool
fn le(&self, other: &DwId) -> bool
fn gt(&self, other: &DwId) -> bool
fn ge(&self, other: &DwId) -> bool
impl PartialOrd<DwChildren> for DwChildren
fn partial_cmp(&self, other: &DwChildren) -> Option<Ordering>
fn lt(&self, other: &DwChildren) -> bool
fn le(&self, other: &DwChildren) -> bool
fn gt(&self, other: &DwChildren) -> bool
fn ge(&self, other: &DwChildren) -> bool
impl PartialOrd<DwInl> for DwInl
fn partial_cmp(&self, other: &DwInl) -> Option<Ordering>
fn lt(&self, other: &DwInl) -> bool
fn le(&self, other: &DwInl) -> bool
fn gt(&self, other: &DwInl) -> bool
fn ge(&self, other: &DwInl) -> bool
impl PartialOrd<DwIdx> for DwIdx
fn partial_cmp(&self, other: &DwIdx) -> Option<Ordering>
fn lt(&self, other: &DwIdx) -> bool
fn le(&self, other: &DwIdx) -> bool
fn gt(&self, other: &DwIdx) -> bool
fn ge(&self, other: &DwIdx) -> bool
impl PartialOrd<DwAddr> for DwAddr
fn partial_cmp(&self, other: &DwAddr) -> Option<Ordering>
fn lt(&self, other: &DwAddr) -> bool
fn le(&self, other: &DwAddr) -> bool
fn gt(&self, other: &DwAddr) -> bool
fn ge(&self, other: &DwAddr) -> bool
impl PartialOrd<DwUt> for DwUt
fn partial_cmp(&self, other: &DwUt) -> Option<Ordering>
fn lt(&self, other: &DwUt) -> bool
fn le(&self, other: &DwUt) -> bool
fn gt(&self, other: &DwUt) -> bool
fn ge(&self, other: &DwUt) -> bool
impl PartialOrd<DwVirtuality> for DwVirtuality
fn partial_cmp(&self, other: &DwVirtuality) -> Option<Ordering>
fn lt(&self, other: &DwVirtuality) -> bool
fn le(&self, other: &DwVirtuality) -> bool
fn gt(&self, other: &DwVirtuality) -> bool
fn ge(&self, other: &DwVirtuality) -> bool
impl<T> PartialOrd<DebugInfoOffset<T>> for DebugInfoOffset<T> where
T: PartialOrd<T>,
T: PartialOrd<T>,
fn partial_cmp(&self, other: &DebugInfoOffset<T>) -> Option<Ordering>
fn lt(&self, other: &DebugInfoOffset<T>) -> bool
fn le(&self, other: &DebugInfoOffset<T>) -> bool
fn gt(&self, other: &DebugInfoOffset<T>) -> bool
fn ge(&self, other: &DebugInfoOffset<T>) -> bool
impl PartialOrd<DwLle> for DwLle
fn partial_cmp(&self, other: &DwLle) -> Option<Ordering>
fn lt(&self, other: &DwLle) -> bool
fn le(&self, other: &DwLle) -> bool
fn gt(&self, other: &DwLle) -> bool
fn ge(&self, other: &DwLle) -> bool
impl PartialOrd<DwTag> for DwTag
fn partial_cmp(&self, other: &DwTag) -> Option<Ordering>
fn lt(&self, other: &DwTag) -> bool
fn le(&self, other: &DwTag) -> bool
fn gt(&self, other: &DwTag) -> bool
fn ge(&self, other: &DwTag) -> bool
impl PartialOrd<DwMacro> for DwMacro
fn partial_cmp(&self, other: &DwMacro) -> Option<Ordering>
fn lt(&self, other: &DwMacro) -> bool
fn le(&self, other: &DwMacro) -> bool
fn gt(&self, other: &DwMacro) -> bool
fn ge(&self, other: &DwMacro) -> bool
impl<T> PartialOrd<ArangeEntry<T>> for ArangeEntry<T> where
T: Ord + Copy,
T: Ord + Copy,
fn partial_cmp(&self, other: &ArangeEntry<T>) -> Option<Ordering>
impl<T> PartialOrd<UnitSectionOffset<T>> for UnitSectionOffset<T> where
T: PartialOrd<T>,
T: PartialOrd<T>,
fn partial_cmp(&self, other: &UnitSectionOffset<T>) -> Option<Ordering>
fn lt(&self, other: &UnitSectionOffset<T>) -> bool
fn le(&self, other: &UnitSectionOffset<T>) -> bool
fn gt(&self, other: &UnitSectionOffset<T>) -> bool
fn ge(&self, other: &UnitSectionOffset<T>) -> bool
impl PartialOrd<Register> for Register
fn partial_cmp(&self, other: &Register) -> Option<Ordering>
fn lt(&self, other: &Register) -> bool
fn le(&self, other: &Register) -> bool
fn gt(&self, other: &Register) -> bool
fn ge(&self, other: &Register) -> bool
impl PartialOrd<DwAt> for DwAt
fn partial_cmp(&self, other: &DwAt) -> Option<Ordering>
fn lt(&self, other: &DwAt) -> bool
fn le(&self, other: &DwAt) -> bool
fn gt(&self, other: &DwAt) -> bool
fn ge(&self, other: &DwAt) -> bool
impl PartialOrd<DwDefaulted> for DwDefaulted
fn partial_cmp(&self, other: &DwDefaulted) -> Option<Ordering>
fn lt(&self, other: &DwDefaulted) -> bool
fn le(&self, other: &DwDefaulted) -> bool
fn gt(&self, other: &DwDefaulted) -> bool
fn ge(&self, other: &DwDefaulted) -> bool
impl<T> PartialOrd<UnitOffset<T>> for UnitOffset<T> where
T: PartialOrd<T>,
T: PartialOrd<T>,
fn partial_cmp(&self, other: &UnitOffset<T>) -> Option<Ordering>
fn lt(&self, other: &UnitOffset<T>) -> bool
fn le(&self, other: &UnitOffset<T>) -> bool
fn gt(&self, other: &UnitOffset<T>) -> bool
fn ge(&self, other: &UnitOffset<T>) -> bool
impl<E> PartialOrd<I64<E>> for I64<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I64<E>) -> Option<Ordering>
fn lt(&self, other: &I64<E>) -> bool
fn le(&self, other: &I64<E>) -> bool
fn gt(&self, other: &I64<E>) -> bool
fn ge(&self, other: &I64<E>) -> bool
impl<E> PartialOrd<I16<E>> for I16<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I16<E>) -> Option<Ordering>
fn lt(&self, other: &I16<E>) -> bool
fn le(&self, other: &I16<E>) -> bool
fn gt(&self, other: &I16<E>) -> bool
fn ge(&self, other: &I16<E>) -> bool
impl<E> PartialOrd<U32<E>> for U32<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U32<E>) -> Option<Ordering>
fn lt(&self, other: &U32<E>) -> bool
fn le(&self, other: &U32<E>) -> bool
fn gt(&self, other: &U32<E>) -> bool
fn ge(&self, other: &U32<E>) -> bool
impl<E> PartialOrd<U64<E>> for U64<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U64<E>) -> Option<Ordering>
fn lt(&self, other: &U64<E>) -> bool
fn le(&self, other: &U64<E>) -> bool
fn gt(&self, other: &U64<E>) -> bool
fn ge(&self, other: &U64<E>) -> bool
impl<E> PartialOrd<U16Bytes<E>> for U16Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U16Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &U16Bytes<E>) -> bool
fn le(&self, other: &U16Bytes<E>) -> bool
fn gt(&self, other: &U16Bytes<E>) -> bool
fn ge(&self, other: &U16Bytes<E>) -> bool
impl<E> PartialOrd<U16<E>> for U16<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U16<E>) -> Option<Ordering>
fn lt(&self, other: &U16<E>) -> bool
fn le(&self, other: &U16<E>) -> bool
fn gt(&self, other: &U16<E>) -> bool
fn ge(&self, other: &U16<E>) -> bool
impl<E> PartialOrd<I16Bytes<E>> for I16Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I16Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &I16Bytes<E>) -> bool
fn le(&self, other: &I16Bytes<E>) -> bool
fn gt(&self, other: &I16Bytes<E>) -> bool
fn ge(&self, other: &I16Bytes<E>) -> bool
impl<E> PartialOrd<I32<E>> for I32<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I32<E>) -> Option<Ordering>
fn lt(&self, other: &I32<E>) -> bool
fn le(&self, other: &I32<E>) -> bool
fn gt(&self, other: &I32<E>) -> bool
fn ge(&self, other: &I32<E>) -> bool
impl<E> PartialOrd<I32Bytes<E>> for I32Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I32Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &I32Bytes<E>) -> bool
fn le(&self, other: &I32Bytes<E>) -> bool
fn gt(&self, other: &I32Bytes<E>) -> bool
fn ge(&self, other: &I32Bytes<E>) -> bool
impl<E> PartialOrd<U64Bytes<E>> for U64Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U64Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &U64Bytes<E>) -> bool
fn le(&self, other: &U64Bytes<E>) -> bool
fn gt(&self, other: &U64Bytes<E>) -> bool
fn ge(&self, other: &U64Bytes<E>) -> bool
impl<E> PartialOrd<U32Bytes<E>> for U32Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &U32Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &U32Bytes<E>) -> bool
fn le(&self, other: &U32Bytes<E>) -> bool
fn gt(&self, other: &U32Bytes<E>) -> bool
fn ge(&self, other: &U32Bytes<E>) -> bool
impl<E> PartialOrd<I64Bytes<E>> for I64Bytes<E> where
E: Endian + PartialOrd<E>,
E: Endian + PartialOrd<E>,
fn partial_cmp(&self, other: &I64Bytes<E>) -> Option<Ordering>
fn lt(&self, other: &I64Bytes<E>) -> bool
fn le(&self, other: &I64Bytes<E>) -> bool
fn gt(&self, other: &I64Bytes<E>) -> bool
fn ge(&self, other: &I64Bytes<E>) -> bool
Implementors
impl PartialOrd<Ordering> for Ordering
[src]
fn partial_cmp(&self, other: &Ordering) -> Option<Ordering>
[src]
impl PartialOrd<Infallible> for Infallible
[src]
fn partial_cmp(&self, _other: &Infallible) -> Option<Ordering>
[src]
impl PartialOrd<TypeId> for TypeId
[src]
fn partial_cmp(&self, other: &TypeId) -> Option<Ordering>
[src]
fn lt(&self, other: &TypeId) -> bool
[src]
fn le(&self, other: &TypeId) -> bool
[src]
fn gt(&self, other: &TypeId) -> bool
[src]
fn ge(&self, other: &TypeId) -> bool
[src]
impl PartialOrd<Error> for Error
[src]
fn partial_cmp(&self, other: &Error) -> Option<Ordering>
[src]
impl PartialOrd<PhantomPinned> for PhantomPinned
[src]
fn partial_cmp(&self, other: &PhantomPinned) -> Option<Ordering>
[src]
impl PartialOrd<NonZeroI8> for NonZeroI8
[src]
fn partial_cmp(&self, other: &NonZeroI8) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroI8) -> bool
[src]
fn le(&self, other: &NonZeroI8) -> bool
[src]
fn gt(&self, other: &NonZeroI8) -> bool
[src]
fn ge(&self, other: &NonZeroI8) -> bool
[src]
impl PartialOrd<NonZeroI16> for NonZeroI16
[src]
fn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroI16) -> bool
[src]
fn le(&self, other: &NonZeroI16) -> bool
[src]
fn gt(&self, other: &NonZeroI16) -> bool
[src]
fn ge(&self, other: &NonZeroI16) -> bool
[src]
impl PartialOrd<NonZeroI32> for NonZeroI32
[src]
fn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroI32) -> bool
[src]
fn le(&self, other: &NonZeroI32) -> bool
[src]
fn gt(&self, other: &NonZeroI32) -> bool
[src]
fn ge(&self, other: &NonZeroI32) -> bool
[src]
impl PartialOrd<NonZeroI64> for NonZeroI64
[src]
fn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroI64) -> bool
[src]
fn le(&self, other: &NonZeroI64) -> bool
[src]
fn gt(&self, other: &NonZeroI64) -> bool
[src]
fn ge(&self, other: &NonZeroI64) -> bool
[src]
impl PartialOrd<NonZeroI128> for NonZeroI128
[src]
fn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroI128) -> bool
[src]
fn le(&self, other: &NonZeroI128) -> bool
[src]
fn gt(&self, other: &NonZeroI128) -> bool
[src]
fn ge(&self, other: &NonZeroI128) -> bool
[src]
impl PartialOrd<NonZeroIsize> for NonZeroIsize
[src]
fn partial_cmp(&self, other: &NonZeroIsize) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroIsize) -> bool
[src]
fn le(&self, other: &NonZeroIsize) -> bool
[src]
fn gt(&self, other: &NonZeroIsize) -> bool
[src]
fn ge(&self, other: &NonZeroIsize) -> bool
[src]
impl PartialOrd<NonZeroU8> for NonZeroU8
[src]
fn partial_cmp(&self, other: &NonZeroU8) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroU8) -> bool
[src]
fn le(&self, other: &NonZeroU8) -> bool
[src]
fn gt(&self, other: &NonZeroU8) -> bool
[src]
fn ge(&self, other: &NonZeroU8) -> bool
[src]
impl PartialOrd<NonZeroU16> for NonZeroU16
[src]
fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroU16) -> bool
[src]
fn le(&self, other: &NonZeroU16) -> bool
[src]
fn gt(&self, other: &NonZeroU16) -> bool
[src]
fn ge(&self, other: &NonZeroU16) -> bool
[src]
impl PartialOrd<NonZeroU32> for NonZeroU32
[src]
fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroU32) -> bool
[src]
fn le(&self, other: &NonZeroU32) -> bool
[src]
fn gt(&self, other: &NonZeroU32) -> bool
[src]
fn ge(&self, other: &NonZeroU32) -> bool
[src]
impl PartialOrd<NonZeroU64> for NonZeroU64
[src]
fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroU64) -> bool
[src]
fn le(&self, other: &NonZeroU64) -> bool
[src]
fn gt(&self, other: &NonZeroU64) -> bool
[src]
fn ge(&self, other: &NonZeroU64) -> bool
[src]
impl PartialOrd<NonZeroU128> for NonZeroU128
[src]
fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroU128) -> bool
[src]
fn le(&self, other: &NonZeroU128) -> bool
[src]
fn gt(&self, other: &NonZeroU128) -> bool
[src]
fn ge(&self, other: &NonZeroU128) -> bool
[src]
impl PartialOrd<NonZeroUsize> for NonZeroUsize
[src]
fn partial_cmp(&self, other: &NonZeroUsize) -> Option<Ordering>
[src]
fn lt(&self, other: &NonZeroUsize) -> bool
[src]
fn le(&self, other: &NonZeroUsize) -> bool
[src]
fn gt(&self, other: &NonZeroUsize) -> bool
[src]
fn ge(&self, other: &NonZeroUsize) -> bool
[src]
impl<'a, 'b> PartialOrd<&'a Path> for Cow<'b, OsStr>
[src]
fn partial_cmp(&self, other: &&'a Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, OsStr>
[src]
fn partial_cmp(&self, other: &&'b OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &&'b OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<&'b Path> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &&'b Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, OsStr>
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &OsStr) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for Cow<'a, OsStr>
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<OsString> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &OsString) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Path> for Cow<'a, OsStr>
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<Path> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &Path) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<PathBuf> for Cow<'a, OsStr>
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, 'b> PartialOrd<PathBuf> for Cow<'a, Path>
[src]
fn partial_cmp(&self, other: &PathBuf) -> Option<Ordering>
[src]
impl<'a, B> PartialOrd<Cow<'a, B>> for Cow<'a, B> where
B: PartialOrd<B> + ToOwned + ?Sized,
[src]
B: PartialOrd<B> + ToOwned + ?Sized,
fn partial_cmp(&self, other: &Cow<'a, B>) -> Option<Ordering>
[src]
impl<A> PartialOrd<VecDeque<A>> for VecDeque<A> where
A: PartialOrd<A>,
[src]
A: PartialOrd<A>,
fn partial_cmp(&self, other: &VecDeque<A>) -> Option<Ordering>
[src]
impl<K, V> PartialOrd<BTreeMap<K, V>> for BTreeMap<K, V> where
K: PartialOrd<K>,
V: PartialOrd<V>,
[src]
K: PartialOrd<K>,
V: PartialOrd<V>,
fn partial_cmp(&self, other: &BTreeMap<K, V>) -> Option<Ordering>
[src]
impl<T> PartialOrd<Cell<T>> for Cell<T> where
T: PartialOrd<T> + Copy,
[src]
T: PartialOrd<T> + Copy,
fn partial_cmp(&self, other: &Cell<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Cell<T>) -> bool
[src]
fn le(&self, other: &Cell<T>) -> bool
[src]
fn gt(&self, other: &Cell<T>) -> bool
[src]
fn ge(&self, other: &Cell<T>) -> bool
[src]
impl<T> PartialOrd<RefCell<T>> for RefCell<T> where
T: PartialOrd<T> + ?Sized,
[src]
T: PartialOrd<T> + ?Sized,
fn partial_cmp(&self, other: &RefCell<T>) -> Option<Ordering>
[src]
Panics
Panics if the value in either RefCell
is currently borrowed.
fn lt(&self, other: &RefCell<T>) -> bool
[src]
Panics
Panics if the value in either RefCell
is currently borrowed.
fn le(&self, other: &RefCell<T>) -> bool
[src]
Panics
Panics if the value in either RefCell
is currently borrowed.
fn gt(&self, other: &RefCell<T>) -> bool
[src]
Panics
Panics if the value in either RefCell
is currently borrowed.
fn ge(&self, other: &RefCell<T>) -> bool
[src]
Panics
Panics if the value in either RefCell
is currently borrowed.
impl<T> PartialOrd<BTreeSet<T>> for BTreeSet<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &BTreeSet<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &BTreeSet<T>) -> bool
[src]
fn le(&self, other: &BTreeSet<T>) -> bool
[src]
fn gt(&self, other: &BTreeSet<T>) -> bool
[src]
fn ge(&self, other: &BTreeSet<T>) -> bool
[src]
impl<T> PartialOrd<PhantomData<T>> for PhantomData<T> where
T: ?Sized,
[src]
T: ?Sized,
fn partial_cmp(&self, _other: &PhantomData<T>) -> Option<Ordering>
[src]
impl<T> PartialOrd<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialOrd<T> + ?Sized,
[src]
T: PartialOrd<T> + ?Sized,
fn partial_cmp(&self, other: &ManuallyDrop<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &ManuallyDrop<T>) -> bool
[src]
fn le(&self, other: &ManuallyDrop<T>) -> bool
[src]
fn gt(&self, other: &ManuallyDrop<T>) -> bool
[src]
fn ge(&self, other: &ManuallyDrop<T>) -> bool
[src]
impl<T> PartialOrd<Wrapping<T>> for Wrapping<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Wrapping<T>) -> bool
[src]
fn le(&self, other: &Wrapping<T>) -> bool
[src]
fn gt(&self, other: &Wrapping<T>) -> bool
[src]
fn ge(&self, other: &Wrapping<T>) -> bool
[src]
impl<T> PartialOrd<Box<T>> for Box<T> where
T: PartialOrd<T> + ?Sized,
[src]
T: PartialOrd<T> + ?Sized,
fn partial_cmp(&self, other: &Box<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Box<T>) -> bool
[src]
fn le(&self, other: &Box<T>) -> bool
[src]
fn ge(&self, other: &Box<T>) -> bool
[src]
fn gt(&self, other: &Box<T>) -> bool
[src]
impl<T> PartialOrd<Reverse<T>> for Reverse<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Reverse<T>) -> bool
[src]
fn le(&self, other: &Reverse<T>) -> bool
[src]
fn gt(&self, other: &Reverse<T>) -> bool
[src]
fn ge(&self, other: &Reverse<T>) -> bool
[src]
impl<T> PartialOrd<Vec<T>> for Vec<T> where
T: PartialOrd<T>,
[src]
T: PartialOrd<T>,
Implements comparison of vectors, lexicographically.
fn partial_cmp(&self, other: &Vec<T>) -> Option<Ordering>
[src]
impl<T> PartialOrd<NonNull<T>> for NonNull<T> where
T: ?Sized,
[src]
T: ?Sized,
fn partial_cmp(&self, other: &NonNull<T>) -> Option<Ordering>
[src]
impl<T> PartialOrd<Rc<T>> for Rc<T> where
T: PartialOrd<T> + ?Sized,
[src]
T: PartialOrd<T> + ?Sized,
fn partial_cmp(&self, other: &Rc<T>) -> Option<Ordering>
[src]
Partial comparison for two Rc
s.
The two are compared by calling partial_cmp()
on their inner values.
Examples
use std::rc::Rc; use std::cmp::Ordering; let five = Rc::new(5); assert_eq!(Some(Ordering::Less), five.partial_cmp(&Rc::new(6)));
fn lt(&self, other: &Rc<T>) -> bool
[src]
Less-than comparison for two Rc
s.
The two are compared by calling <
on their inner values.
Examples
use std::rc::Rc; let five = Rc::new(5); assert!(five < Rc::new(6));
fn le(&self, other: &Rc<T>) -> bool
[src]
'Less than or equal to' comparison for two Rc
s.
The two are compared by calling <=
on their inner values.
Examples
use std::rc::Rc; let five = Rc::new(5); assert!(five <= Rc::new(5));
fn gt(&self, other: &Rc<T>) -> bool
[src]
Greater-than comparison for two Rc
s.
The two are compared by calling >
on their inner values.
Examples
use std::rc::Rc; let five = Rc::new(5); assert!(five > Rc::new(4));
fn ge(&self, other: &Rc<T>) -> bool
[src]
'Greater than or equal to' comparison for two Rc
s.
The two are compared by calling >=
on their inner values.
Examples
use std::rc::Rc; let five = Rc::new(5); assert!(five >= Rc::new(5));
impl<T> PartialOrd<Arc<T>> for Arc<T> where
T: PartialOrd<T> + ?Sized,
[src]
T: PartialOrd<T> + ?Sized,
fn partial_cmp(&self, other: &Arc<T>) -> Option<Ordering>
[src]
Partial comparison for two Arc
s.
The two are compared by calling partial_cmp()
on their inner values.
Examples
use std::sync::Arc; use std::cmp::Ordering; let five = Arc::new(5); assert_eq!(Some(Ordering::Less), five.partial_cmp(&Arc::new(6)));
fn lt(&self, other: &Arc<T>) -> bool
[src]
Less-than comparison for two Arc
s.
The two are compared by calling <
on their inner values.
Examples
use std::sync::Arc; let five = Arc::new(5); assert!(five < Arc::new(6));
fn le(&self, other: &Arc<T>) -> bool
[src]
'Less than or equal to' comparison for two Arc
s.
The two are compared by calling <=
on their inner values.
Examples
use std::sync::Arc; let five = Arc::new(5); assert!(five <= Arc::new(5));
fn gt(&self, other: &Arc<T>) -> bool
[src]
Greater-than comparison for two Arc
s.
The two are compared by calling >
on their inner values.
Examples
use std::sync::Arc; let five = Arc::new(5); assert!(five > Arc::new(4));
fn ge(&self, other: &Arc<T>) -> bool
[src]
'Greater than or equal to' comparison for two Arc
s.
The two are compared by calling >=
on their inner values.
Examples
use std::sync::Arc; let five = Arc::new(5); assert!(five >= Arc::new(5));
impl<T, E> PartialOrd<Result<T, E>> for Result<T, E> where
E: PartialOrd<E>,
T: PartialOrd<T>,
[src]
E: PartialOrd<E>,
T: PartialOrd<T>,
fn partial_cmp(&self, other: &Result<T, E>) -> Option<Ordering>
[src]
fn lt(&self, other: &Result<T, E>) -> bool
[src]
fn le(&self, other: &Result<T, E>) -> bool
[src]
fn gt(&self, other: &Result<T, E>) -> bool
[src]
fn ge(&self, other: &Result<T, E>) -> bool
[src]
impl<Y, R> PartialOrd<GeneratorState<Y, R>> for GeneratorState<Y, R> where
R: PartialOrd<R>,
Y: PartialOrd<Y>,
[src]
R: PartialOrd<R>,
Y: PartialOrd<Y>,