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 H: PartialEq<H>, G: PartialEq<G>, I: PartialEq<I>, L: PartialEq<L>, A: PartialEq<A>, C: PartialEq<C>, E: PartialEq<E>, B: PartialEq<B>, J: PartialEq<J>, D: PartialEq<D>, F: PartialEq<F>, K: PartialEq<K>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 G: PartialEq<G>, H: PartialEq<H>, D: PartialEq<D>, F: PartialEq<F>, I: PartialEq<I>, J: PartialEq<J>, B: PartialEq<B>, C: PartialEq<C>, E: PartialEq<E>, K: PartialEq<K>, A: PartialEq<A>impl<A, B, C, D, E, F, G, H, I, J> PartialEq for (A, B, C, D, E, F, G, H, I, J) where H: PartialEq<H>, E: PartialEq<E>, A: PartialEq<A>, C: PartialEq<C>, G: PartialEq<G>, D: PartialEq<D>, B: PartialEq<B>, I: PartialEq<I>, J: PartialEq<J>, 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 D: PartialEq<D>, H: PartialEq<H>, B: PartialEq<B>, E: PartialEq<E>, A: PartialEq<A>, I: PartialEq<I>, C: PartialEq<C>, G: PartialEq<G>, F: PartialEq<F>impl<A, B, C, D, E, F, G, H> PartialEq for (A, B, C, D, E, F, G, H) where B: PartialEq<B>, H: PartialEq<H>, D: PartialEq<D>, F: PartialEq<F>, A: PartialEq<A>, E: PartialEq<E>, G: PartialEq<G>, C: PartialEq<C>impl<A, B, C, D, E, F, G> PartialEq for (A, B, C, D, E, F, G) where C: PartialEq<C>, F: PartialEq<F>, B: PartialEq<B>, A: PartialEq<A>, E: PartialEq<E>, D: PartialEq<D>, G: PartialEq<G>impl<A, B, C, D, E, F> PartialEq for (A, B, C, D, E, F) where B: PartialEq<B>, D: PartialEq<D>, E: PartialEq<E>, C: PartialEq<C>, F: PartialEq<F>, A: PartialEq<A>impl<A, B, C, D, E> PartialEq for (A, B, C, D, E) where C: PartialEq<C>, E: PartialEq<E>, D: PartialEq<D>, B: PartialEq<B>, A: PartialEq<A>impl<A, B, C, D> PartialEq for (A, B, C, D) where D: PartialEq<D>, C: PartialEq<C>, B: PartialEq<B>, A: PartialEq<A>impl<A, B, C> PartialEq for (A, B, C) where C: PartialEq<C>, A: PartialEq<A>, B: PartialEq<B>impl<A, B> PartialEq for (A, B) where A: PartialEq<A>, B: PartialEq<B>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 T: PartialEq<T>, E: PartialEq<E>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 ParseFloatErrorimpl PartialEq for ParseIntErrorimpl<T> PartialEq for Wrapping<T> where T: PartialEq<T>impl PartialEq for FpCategoryimpl PartialEq for LocalKeyStateimpl<K, V, S> PartialEq for HashMap<K, V, S> where S: BuildHasher, V: PartialEq<V>, K: Eq + Hashimpl<T, S> PartialEq for HashSet<T, S> where T: Eq + Hash, S: BuildHasherimpl<T> PartialEq for Bound<T> where T: PartialEq<T>impl<A> PartialEq for VecDeque<A> where A: PartialEq<A>impl<A> PartialEq for LinkedList<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 PartialEq for VarErrorimpl PartialEq for CStringimpl PartialEq for IntoStringErrorimpl PartialEq for NulErrorimpl PartialEq for CStrimpl<T> PartialEq for Arc<T> where T: PartialEq<T> + ?Sizedimpl<T> PartialEq for Rc<T> where T: PartialEq<T> + ?Sizedimpl PartialEq for Orderingimpl PartialEq for Errorimpl<T> PartialEq for PhantomData<T> where T: ?Sizedimpl 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>impl PartialEq for SearchStepimpl PartialEq for ParseBoolErrorimpl PartialEq for Utf8Errorimpl PartialEq for TypeIdimpl<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, B, C> PartialEq for Cow<'a, B> where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sizedimpl<'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, 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 PartialEq for ParseError