Trait bitflags::__core::cmp::PartialEq
[−]
[src]
pub trait PartialEq<Rhs = Self> where Rhs: ?Sized {
fn eq(&self, other: &Rhs) -> bool;
fn ne(&self, other: &Rhs) -> bool { ... }
}Trait for equality comparisons which are partial equivalence relations.
This trait allows for partial equality, for types that do not have a full
equivalence relation. For example, in floating point numbers NaN != NaN,
so floating point types implement PartialEq but not Eq.
Formally, the equality must be (for all a, b and c):
- symmetric:
a == bimpliesb == a; and - transitive:
a == bandb == cimpliesa == c.
Note that these requirements mean that the trait itself must be implemented
symmetrically and transitively: if T: PartialEq<U> and U: PartialEq<V>
then U: PartialEq<T> and T: PartialEq<V>.
PartialEq only requires the eq method to be implemented; ne is defined
in terms of it by default. Any manual implementation of ne must respect
the rule that eq is a strict inverse of ne; that is, !(a == b) if and
only if a != b.
This trait can be used with #[derive].
Examples
let x: u32 = 0; let y: u32 = 1; assert_eq!(x == y, false); assert_eq!(x.eq(&y), false);
Required Methods
fn eq(&self, other: &Rhs) -> bool
This method tests for self and other values to be equal, and is used
by ==.
Provided Methods
Implementors
impl<A, B, C, D, E, F, G, H, I, J, K, L> PartialEq for (A, B, C, D, E, F, G, H, I, J, K, L) where K: PartialEq<K>, F: PartialEq<F>, L: PartialEq<L>, H: PartialEq<H>, B: PartialEq<B>, C: PartialEq<C>, I: PartialEq<I>, A: PartialEq<A>, D: PartialEq<D>, E: PartialEq<E>, G: PartialEq<G>, J: PartialEq<J>impl<A, B, C, D, E, F, G, H, I, J, K> PartialEq for (A, B, C, D, E, F, G, H, I, J, K) where B: PartialEq<B>, D: PartialEq<D>, I: PartialEq<I>, H: PartialEq<H>, C: PartialEq<C>, J: PartialEq<J>, G: PartialEq<G>, F: PartialEq<F>, A: PartialEq<A>, E: PartialEq<E>, K: PartialEq<K>impl<A, B, C, D, E, F, G, H, I, J> PartialEq for (A, B, C, D, E, F, G, H, I, J) where J: PartialEq<J>, G: PartialEq<G>, E: PartialEq<E>, H: PartialEq<H>, A: PartialEq<A>, D: PartialEq<D>, B: PartialEq<B>, I: PartialEq<I>, C: PartialEq<C>, F: PartialEq<F>impl<A, B, C, D, E, F, G, H, I> PartialEq for (A, B, C, D, E, F, G, H, I) where F: PartialEq<F>, E: PartialEq<E>, B: PartialEq<B>, G: PartialEq<G>, D: PartialEq<D>, I: PartialEq<I>, C: PartialEq<C>, H: PartialEq<H>, A: PartialEq<A>impl<A, B, C, D, E, F, G, H> PartialEq for (A, B, C, D, E, F, G, H) where A: PartialEq<A>, G: PartialEq<G>, C: PartialEq<C>, D: PartialEq<D>, E: PartialEq<E>, H: PartialEq<H>, B: PartialEq<B>, F: PartialEq<F>impl<A, B, C, D, E, F, G> PartialEq for (A, B, C, D, E, F, G) where B: PartialEq<B>, E: PartialEq<E>, G: PartialEq<G>, A: PartialEq<A>, D: PartialEq<D>, F: PartialEq<F>, C: PartialEq<C>impl<A, B, C, D, E, F> PartialEq for (A, B, C, D, E, F) where E: PartialEq<E>, F: PartialEq<F>, B: PartialEq<B>, C: PartialEq<C>, A: PartialEq<A>, D: PartialEq<D>impl<A, B, C, D, E> PartialEq for (A, B, C, D, E) where E: PartialEq<E>, D: PartialEq<D>, A: PartialEq<A>, C: PartialEq<C>, B: PartialEq<B>impl<A, B, C, D> PartialEq for (A, B, C, D) where B: PartialEq<B>, D: PartialEq<D>, A: PartialEq<A>, C: PartialEq<C>impl<A, B, C> PartialEq for (A, B, C) where A: PartialEq<A>, B: PartialEq<B>, C: PartialEq<C>impl<A, B> PartialEq for (A, B) where B: PartialEq<B>, A: PartialEq<A>impl<A> PartialEq for (A,) where A: PartialEq<A>impl PartialEq for strimpl<A, B> PartialEq for [A] where A: PartialEq<B>impl<T, E> PartialEq for Result<T, E> where E: PartialEq<E>, T: PartialEq<T>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 32] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 32] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 32] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 32] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 31] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 31] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 31] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 31] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 30] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 30] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 30] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 30] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 29] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 29] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 29] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 29] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 28] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 28] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 28] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 28] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 27] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 27] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 27] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 27] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 26] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 26] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 26] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 26] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 25] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 25] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 25] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 25] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 24] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 24] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 24] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 24] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 23] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 23] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 23] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 23] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 22] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 22] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 22] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 22] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 21] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 21] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 21] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 21] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 20] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 20] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 20] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 20] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 19] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 19] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 19] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 19] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 18] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 18] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 18] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 18] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 17] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 17] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 17] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 17] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 16] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 16] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 16] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 16] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 15] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 15] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 15] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 15] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 14] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 14] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 14] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 14] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 13] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 13] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 13] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 13] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 12] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 12] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 12] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 12] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 11] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 11] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 11] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 11] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 10] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 10] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 10] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 10] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 9] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 9] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 9] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 9] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 8] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 8] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 8] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 8] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 7] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 7] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 7] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 7] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 6] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 6] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 6] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 6] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 5] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 5] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 5] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 5] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 4] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 4] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 4] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 4] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 3] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 3] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 3] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 3] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 2] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 2] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 2] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 2] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 1] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 1] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 1] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 1] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b mut [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 0] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for &'b [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 0] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [B] where B: PartialEq<A>impl<'a, 'b, A, B> PartialEq for [A; 0] where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for [A; 0] where A: PartialEq<B>impl PartialEq for f64impl PartialEq for f32impl PartialEq for i64impl PartialEq for i32impl PartialEq for i16impl PartialEq for i8impl PartialEq for isizeimpl PartialEq for u64impl PartialEq for u32impl PartialEq for u16impl PartialEq for u8impl PartialEq for usizeimpl PartialEq for charimpl PartialEq for boolimpl PartialEq for ()impl<T> PartialEq for *mut T where T: ?Sizedimpl<T> PartialEq for *const T where T: ?Sizedimpl<T> PartialEq for Option<T> where T: PartialEq<T>impl<T> PartialEq for Box<T> where T: PartialEq<T> + ?Sizedimpl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b, A, B> PartialEq for Vec<A> where A: PartialEq<B>impl<'a, 'b> PartialEq for &'b strimpl<'a, 'b> PartialEq for strimpl<'a, 'b> PartialEq for &'a strimpl<'a, 'b> PartialEq for strimpl<'a, 'b> PartialEq for Stringimpl<'a, 'b> PartialEq for Stringimpl<'a, 'b> PartialEq for Stringimpl PartialEq for Stringimpl PartialEq for strimpl PartialEq for strimpl PartialEq for ParseIntErrorimpl<T> PartialEq for Wrapping<T> where T: PartialEq<T>impl PartialEq for FpCategoryimpl PartialEq for LocalKeyStateimpl<A> PartialEq for LinkedList<A> where A: PartialEq<A>impl<A> PartialEq for VecDeque<A> where A: PartialEq<A>impl<K, V> PartialEq for BTreeMap<K, V> where K: PartialEq<K>, V: PartialEq<V>impl<T> PartialEq for BTreeSet<T> where T: PartialEq<T>impl<T> PartialEq for Bound<T> where T: PartialEq<T>impl<T> PartialEq for Arc<T> where T: PartialEq<T> + ?Sizedimpl PartialEq for SearchStepimpl PartialEq for Utf8Errorimpl PartialEq for ParseBoolErrorimpl<T> PartialEq for Rc<T> where T: PartialEq<T> + ?Sizedimpl<T> PartialEq for PhantomData<T> where T: ?Sizedimpl PartialEq for ParseErrorimpl PartialEq for Orderingimpl<T> PartialEq for Cell<T> where T: Copy + PartialEq<T>impl<T> PartialEq for RefCell<T> where T: PartialEq<T> + ?Sizedimpl PartialEq for BorrowStateimpl<'a, 'b, A, B> PartialEq for Cow<'a, [A]> where A: Clone + PartialEq<B>impl<'a, 'b, A, B> PartialEq for Cow<'a, [A]> where A: Clone + PartialEq<B>impl<'a, 'b, A, B> PartialEq for Cow<'a, [A]> where A: Clone + PartialEq<B>impl<'a, 'b> PartialEq for Cow<'a, str>impl<'a, 'b> PartialEq for Cow<'a, str>impl<'a, 'b> PartialEq for Cow<'a, str>impl<'a, 'b, B, C> PartialEq for Cow<'a, B> where C: ToOwned + ?Sized, B: PartialEq<C> + ToOwned + ?Sizedimpl PartialEq for Errorimpl PartialEq for TypeIdimpl PartialEq for RangeFullimpl<Idx> PartialEq for Range<Idx> where Idx: PartialEq<Idx>impl<Idx> PartialEq for RangeFrom<Idx> where Idx: PartialEq<Idx>impl<Idx> PartialEq for RangeTo<Idx> where Idx: PartialEq<Idx>impl<Idx> PartialEq for RangeInclusive<Idx> where Idx: PartialEq<Idx>impl<Idx> PartialEq for RangeToInclusive<Idx> where Idx: PartialEq<Idx>