1.0.0[][src]Trait frame_support::dispatch::Eq

pub trait Eq: PartialEq<Self> { }

Trait for equality comparisons which are equivalence relations.

This means, that in addition to a == b and a != b being strict inverses, the equality must be (for all a, b and c):

  • reflexive: a == a;
  • symmetric: a == b implies b == a; and
  • transitive: a == b and b == c implies a == c.

This property cannot be checked by the compiler, and therefore Eq implies PartialEq, and has no extra methods.

Derivable

This trait can be used with #[derive]. When derived, because Eq has no extra methods, it is only informing the compiler that this is an equivalence relation rather than a partial equivalence relation. Note that the derive strategy requires all fields are Eq, which isn't always desired.

How can I implement Eq?

If you cannot use the derive strategy, specify that your type implements Eq, which has no methods:

enum BookFormat { Paperback, Hardback, Ebook }
struct Book {
    isbn: i32,
    format: BookFormat,
}
impl PartialEq for Book {
    fn eq(&self, other: &Self) -> bool {
        self.isbn == other.isbn
    }
}
impl Eq for Book {}

Implementations on Foreign Types

impl<'a> Eq for PrefixComponent<'a>[src]

impl<T> Eq for TrySendError<T> where
    T: Eq
[src]

impl Eq for Path[src]

impl Eq for RecvTimeoutError[src]

impl Eq for Permissions[src]

impl Eq for ExitStatus[src]

impl Eq for CStr[src]

impl Eq for FromVecWithNulError[src]

impl Eq for AddrParseError[src]

impl Eq for SocketAddr[src]

impl Eq for IpAddr[src]

impl Eq for Ipv4Addr[src]

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

impl Eq for Output[src]

impl Eq for Shutdown[src]

impl Eq for SystemTime[src]

impl<K, V, S> Eq for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher,
    V: Eq
[src]

impl Eq for OsString[src]

impl<T> Eq for SyncOnceCell<T> where
    T: Eq
[src]

impl<T> Eq for SendError<T> where
    T: Eq
[src]

impl Eq for RecvError[src]

impl Eq for CString[src]

impl Eq for Instant[src]

impl<T> Eq for Cursor<T> where
    T: Eq
[src]

impl Eq for ErrorKind[src]

impl Eq for NulError[src]

impl Eq for SocketAddrV6[src]

impl Eq for StripPrefixError[src]

impl<T, S> Eq for HashSet<T, S> where
    S: BuildHasher,
    T: Eq + Hash
[src]

impl Eq for VarError[src]

impl Eq for PathBuf[src]

impl Eq for BacktraceStatus[src]

impl Eq for Ipv6Addr[src]

impl Eq for SeekFrom[src]

impl Eq for OsStr[src]

impl Eq for Ipv6MulticastScope[src]

impl Eq for IntoStringError[src]

impl Eq for ThreadId[src]

impl Eq for FromBytesWithNulError[src]

impl Eq for FileType[src]

impl Eq for SocketAddrV4[src]

impl Eq for AccessError[src]

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

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

impl Eq for WaitTimeoutResult[src]

impl Eq for TryRecvError[src]

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

impl Eq for ![src]

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

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

impl Eq for i16[src]

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

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

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

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

impl<T> Eq for ManuallyDrop<T> where
    T: Eq + ?Sized
[src]

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

impl Eq for char[src]

impl Eq for i32[src]

impl Eq for ()[src]

impl Eq for u64[src]

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

impl Eq for Duration[src]

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

impl<'a> Eq for Utf8LossyChunk<'a>[src]

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

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

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

impl Eq for Ordering[src]

impl Eq for usize[src]

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

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

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

impl<Idx> Eq for RangeTo<Idx> where
    Idx: Eq
[src]

impl<Idx> Eq for RangeInclusive<Idx> where
    Idx: Eq
[src]

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

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

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

impl Eq for NonZeroI128[src]

impl Eq for bool[src]

impl Eq for NonZeroI32[src]

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

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

impl Eq for Ordering[src]

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

impl<T> Eq for Reverse<T> where
    T: Eq
[src]

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

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

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

impl<Idx> Eq for RangeToInclusive<Idx> where
    Idx: Eq
[src]

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

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

impl Eq for CharTryFromError[src]

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

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

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

impl Eq for ParseBoolError[src]

impl Eq for i64[src]

impl Eq for AllocInit[src]

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

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

impl<Idx> Eq for Range<Idx> where
    Idx: Eq
[src]

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

impl Eq for NonZeroU16[src]

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

impl Eq for NonZeroU128[src]

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

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

impl<T> Eq for Poll<T> where
    T: Eq
[src]

impl Eq for str[src]

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

impl<T> Eq for Discriminant<T>[src]

impl Eq for u32[src]

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

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

impl<Ret, A> Eq for unsafe fn(A) -> Ret[src]

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

impl Eq for u16[src]

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

impl Eq for Utf8Error[src]

impl Eq for NonZeroI8[src]

impl Eq for ParseIntError[src]

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

impl<T> Eq for Bound<T> where
    T: Eq
[src]

impl Eq for TypeId[src]

impl Eq for CpuidResult[src]

impl Eq for FpCategory[src]

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

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

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

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

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

impl Eq for NoneError[src]

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

impl Eq for i128[src]

impl Eq for Layout[src]

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

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

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

impl Eq for i8[src]

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

impl Eq for ParseFloatError[src]

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

impl<P> Eq for Pin<P> where
    P: Deref,
    <P as Deref>::Target: Eq
[src]

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

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

impl Eq for IntErrorKind[src]

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

impl Eq for NonZeroI64[src]

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

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

impl Eq for RangeFull[src]

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

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

impl<const N: usize, T> Eq for [T; N] where
    T: Eq,
    [T; N]: LengthAtMost32
[src]

impl<T> Eq for OnceCell<T> where
    T: Eq
[src]

impl Eq for NonZeroIsize[src]

impl Eq for NonZeroU64[src]

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

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

impl Eq for u8[src]

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

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

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

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

impl Eq for LayoutErr[src]

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

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

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

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

impl<Idx> Eq for RangeFrom<Idx> where
    Idx: Eq
[src]

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

impl Eq for TryFromIntError[src]

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

impl Eq for isize[src]

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

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

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

impl Eq for ParseCharError[src]

impl<Y, R> Eq for GeneratorState<Y, R> where
    R: Eq,
    Y: Eq
[src]

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

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

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

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

impl Eq for ReallocPlacement[src]

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

impl Eq for NonZeroI16[src]

impl Eq for Infallible[src]

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

impl<H> Eq for BuildHasherDefault<H>[src]

impl<T> Eq for Option<T> where
    T: Eq
[src]

impl Eq for SearchStep[src]

impl Eq for AllocErr[src]

impl Eq for NonZeroU32[src]

impl Eq for u128[src]

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

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

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

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

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

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

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

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

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

impl Eq for NonZeroU8[src]

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

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

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

impl Eq for DecodeUtf16Error[src]

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

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

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

impl Eq for NonZeroUsize[src]

impl Eq for String[src]

impl<T> Eq for BTreeSet<T> where
    T: Eq
[src]

impl<T> Eq for Arc<T> where
    T: Eq + ?Sized
[src]

impl<T> Eq for Box<T> where
    T: Eq + ?Sized
[src]

impl Eq for TryReserveError[src]

impl<A> Eq for VecDeque<A> where
    A: Eq
[src]

impl Eq for FromUtf8Error[src]

impl<K, V> Eq for BTreeMap<K, V> where
    K: Eq,
    V: Eq
[src]

impl<'_, B> Eq for Cow<'_, B> where
    B: Eq + ToOwned + ?Sized
[src]

impl<T> Eq for Rc<T> where
    T: Eq + ?Sized
[src]

impl<T> Eq for LinkedList<T> where
    T: Eq
[src]

impl Eq for PrintFmt[src]

impl<K, V, S> Eq for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher,
    V: Eq

impl Eq for CollectionAllocErr

impl<T, S> Eq for HashSet<T, S> where
    S: BuildHasher,
    T: Eq + Hash

impl Eq for LevelFilter[src]

impl Eq for Empty[src]

impl Eq for Field[src]

impl Eq for Identifier[src]

impl Eq for Kind[src]

impl Eq for Id[src]

impl Eq for Level[src]

impl<'a> Eq for Metadata<'a>[src]

impl Eq for LevelFilter[src]

impl Eq for Level[src]

impl<'a> Eq for MetadataBuilder<'a>[src]

impl Eq for AccountId32[src]

impl Eq for PublicError[src]

impl Eq for PendingRequest[src]

impl Eq for Capability[src]

impl Eq for LocalizedSignature[src]

impl Eq for LocalizedSignature[src]

impl Eq for Ss58AddressFormat[src]

impl Eq for Duration[src]

impl Eq for ExternEntity[src]

impl Eq for StorageKind[src]

impl Eq for CryptoTypeId[src]

impl Eq for Timestamp[src]

impl Eq for EnvironmentDefinition[src]

impl Eq for OpaquePeerId[src]

impl Eq for Signature[src]

impl Eq for ChangesTrieConfiguration[src]

impl Eq for DeriveJunction[src]

impl Eq for KeyTypeId[src]

impl Eq for SecretStringError[src]

impl Eq for PublicError[src]

impl Eq for Capabilities[src]

impl Eq for CryptoTypePublicPair[src]

impl Eq for Public[src]

impl Eq for HttpRequestStatus[src]

impl Eq for Public[src]

impl Eq for Signature[src]

impl Eq for HttpRequestId[src]

impl Eq for OffchainOverlayedChange[src]

impl Eq for Signature[src]

impl Eq for OpaqueNetworkState[src]

impl Eq for OpaqueMultiaddr[src]

impl Eq for Public[src]

impl Eq for PublicError[src]

impl Eq for Dummy[src]

impl<Number, Hash> Eq for ChangesTrieConfigurationRange<Number, Hash> where
    Hash: Eq,
    Number: Eq
[src]

impl Eq for Entry[src]

impl Eq for Bytes[src]

impl Eq for HttpError[src]

impl<T> Eq for Compact<T> where
    T: Eq
[src]

impl Eq for OptionBool[src]

impl Eq for Error[src]

impl<A> Eq for ArrayString<A> where
    A: Array<Item = u8> + Copy
[src]

impl<A> Eq for ArrayVec<A> where
    A: Array,
    <A as Array>::Item: Eq
[src]

impl<T> Eq for CapacityError<T> where
    T: Eq
[src]

impl Eq for Error

impl Eq for Blake2sResult

impl Eq for Blake2bResult

impl<A> Eq for ArrayVec<A> where
    A: Array,
    <A as Array>::Item: Eq
[src]

impl<T> Eq for CapacityError<T> where
    T: Eq
[src]

impl<A> Eq for ArrayString<A> where
    A: Array<Item = u8>, 
[src]

impl Eq for LittleEndian

impl Eq for BigEndian

impl<T, N> Eq for GenericArray<T, N> where
    N: ArrayLength<T>,
    T: Eq

impl Eq for Greater

impl<U, B> Eq for UInt<U, B> where
    B: Eq,
    U: Eq

impl Eq for B1

impl Eq for UTerm

impl<U> Eq for PInt<U> where
    U: NonZero + Unsigned + Eq

impl<V, A> Eq for TArr<V, A> where
    A: Eq,
    V: Eq

impl Eq for Z0

impl Eq for Equal

impl Eq for B0

impl Eq for ATerm

impl Eq for Less

impl<U> Eq for NInt<U> where
    U: NonZero + Unsigned + Eq

impl Eq for u32x4

impl Eq for WeightedError[src]

impl Eq for BernoulliError[src]

impl Eq for Error[src]

impl Eq for vec512_storage

impl Eq for vec256_storage

impl Eq for vec128_storage

impl Eq for WaitTimeoutResult

impl Eq for OnceState

impl Eq for ParkResult

impl Eq for UnparkToken

impl Eq for UnparkResult

impl Eq for RequeueOp

impl Eq for ParkToken

impl Eq for FilterOp

impl<A> Eq for SmallVec<A> where
    A: Array,
    <A as Array>::Item: Eq
[src]

impl<'t> Eq for Match<'t>

impl<'t> Eq for Match<'t>

impl Eq for Match

impl Eq for MatchKind

impl Eq for MatchKind

impl Eq for Error

impl Eq for GroupKind

impl Eq for ClassSetBinaryOp

impl Eq for Concat

impl Eq for ClassUnicodeKind

impl Eq for Hir

impl Eq for ClassUnicodeRange

impl Eq for Class

impl Eq for Repetition

impl Eq for Literal

impl Eq for ErrorKind

impl Eq for Flag

impl Eq for Group

impl Eq for Span

impl Eq for HirKind

impl Eq for RepetitionOp

impl Eq for Error

impl Eq for ClassBytesRange

impl Eq for Literal

impl Eq for Utf8Range

impl Eq for RepetitionRange

impl Eq for Position

impl Eq for ClassBytes

impl Eq for Repetition

impl Eq for WithComments

impl Eq for CaptureName

impl Eq for ClassAsciiKind

impl Eq for Literal

impl Eq for ClassUnicodeOpKind

impl Eq for ClassSetRange

impl Eq for SpecialLiteralKind

impl Eq for Assertion

impl Eq for ClassBracketed

impl Eq for ErrorKind

impl Eq for ClassSetItem

impl Eq for GroupKind

impl Eq for FlagsItemKind

impl Eq for FlagsItem

impl Eq for ClassSet

impl Eq for ClassPerl

impl Eq for RepetitionRange

impl Eq for WordBoundary

impl Eq for Group

impl Eq for Anchor

impl Eq for Comment

impl Eq for ClassPerlKind

impl Eq for RepetitionKind

impl Eq for LiteralKind

impl Eq for SetFlags

impl Eq for Ast

impl Eq for Utf8Sequence

impl Eq for AssertionKind

impl Eq for Class

impl Eq for ClassUnicode

impl Eq for ClassUnicode

impl Eq for ClassSetUnion

impl Eq for Flags

impl Eq for ClassAscii

impl Eq for Literals

impl Eq for Alternation

impl Eq for ClassSetBinaryOpKind

impl Eq for RepetitionKind

impl Eq for HexLiteralKind

impl Eq for Error

impl Eq for Signature

impl Eq for ValueType

impl<T> Eq for Pointer<T> where
    T: PointerType + Eq

impl Eq for Signature

impl Eq for ValueType

impl Eq for Pages

impl Eq for Bytes

impl Eq for Pages

impl Eq for Words

impl Eq for Words

impl Eq for Instruction

impl Eq for FunctionType

impl Eq for Type

impl Eq for BlockType

impl Eq for ValueType

impl Eq for BrTableData

impl<T> Eq for IndexMap<T> where
    T: Eq

impl Eq for StartedWith

impl<T> Eq for Ratio<T> where
    T: Clone + Integer
[src]

impl Eq for ParseBigIntError[src]

impl Eq for BigUint[src]

impl Eq for Sign[src]

impl Eq for BigInt[src]

impl<A> Eq for ExtendedGcd<A> where
    A: Eq
[src]

impl Eq for StorageKey

impl Eq for StorageChild

impl Eq for PrefixedStorageKey

impl Eq for ChildTrieParentKeyId

impl<Hash> Eq for StorageChangeSet<Hash> where
    Hash: Eq

impl Eq for StorageData

impl Eq for Error

impl Eq for U128

impl Eq for U256

impl Eq for H256

impl Eq for H160

impl Eq for H512

impl Eq for U512

impl<Z> Eq for Zeroizing<Z> where
    Z: Zeroize + Eq
[src]

impl Eq for PublicKey

impl Eq for Signature[src]

impl Eq for CompressedRistretto[src]

impl Eq for MontgomeryPoint[src]

impl Eq for RistrettoPoint[src]

impl Eq for Scalar[src]

impl Eq for EdwardsPoint[src]

impl Eq for CompressedEdwardsY[src]

impl Eq for Error

impl<N> Eq for MacResult<N> where
    N: ArrayLength<u8>, 

impl Eq for MacError

impl Eq for InvalidKeyLength

impl Eq for VRFOutput

impl Eq for MiniSecretKey

impl Eq for ChainCode

impl Eq for PublicKey

impl Eq for RistrettoBoth

impl Eq for SignatureError

impl Eq for VRFProofBatchable

impl Eq for Signature

impl Eq for SecretKey

impl Eq for Reveal

impl Eq for MultiSignatureStage

impl<K> Eq for ExtendedKey<K> where
    K: Eq

impl Eq for ECQVCertPublic

impl Eq for VRFProof

impl Eq for VRFInOut

impl Eq for Cosignature

impl Eq for Commitment

impl<E> Eq for Compat<E> where
    E: Eq

impl Eq for PrintFmt[src]

impl Eq for LineRow

impl<T> Eq for DieReference<T> where
    T: Eq

impl Eq for BaseAddresses

impl<R> Eq for UnwindContext<R> where
    R: Reader + Eq

impl Eq for DwId

impl Eq for DwCc

impl Eq for DwOp

impl<T> Eq for DebugMacinfoOffset<T> where
    T: Eq

impl<R> Eq for Attribute<R> where
    R: Reader + Eq

impl Eq for DwAddr

impl<T> Eq for DebugAbbrevOffset<T> where
    T: Eq

impl<T> Eq for UnitSectionOffset<T> where
    T: Eq

impl<T> Eq for DebugLocListsIndex<T> where
    T: Eq

impl Eq for SectionId

impl Eq for DwTag

impl<R> Eq for Expression<R> where
    R: Reader + Eq

impl Eq for AttributeSpecification

impl Eq for DwLnct

impl<T> Eq for LocationListsOffset<T> where
    T: Eq

impl<R> Eq for DebugFrame<R> where
    R: Reader + Eq

impl Eq for Augmentation

impl Eq for DwLns

impl Eq for Abbreviation

impl<R, Offset> Eq for LineProgramHeader<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for DebugTypeSignature

impl Eq for SectionBaseAddresses

impl Eq for DwVirtuality

impl Eq for DwInl

impl Eq for BigEndian

impl<T> Eq for DebugStrOffsetsBase<T> where
    T: Eq

impl<R, Offset> Eq for IncompleteLineProgram<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl<R, Offset> Eq for Operation<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl<T> Eq for EhFrameOffset<T> where
    T: Eq

impl<T> Eq for DebugMacroOffset<T> where
    T: Eq

impl Eq for Range

impl<T> Eq for ArangeEntry<T> where
    T: Eq + Copy

impl Eq for DwRle

impl<T> Eq for DebugTypesOffset<T> where
    T: Eq

impl Eq for FileEntryFormat

impl Eq for DwMacro

impl Eq for LineEncoding

impl<R, Offset> Eq for CompleteLineProgram<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl<'bases, Section, R> Eq for CieOrFde<'bases, Section, R> where
    R: Eq + Reader,
    Section: Eq + UnwindSection<R>, 

impl Eq for ColumnType

impl Eq for DwEhPe

impl<R> Eq for LocationListEntry<R> where
    R: Reader + Eq

impl<R> Eq for UnwindTableRow<R> where
    R: Reader + Eq

impl Eq for DwAt

impl Eq for ReaderOffsetId

impl Eq for Pointer

impl<T> Eq for DebugLineStrOffset<T> where
    T: Eq

impl Eq for DwDsc

impl Eq for DwDs

impl Eq for DwIdx

impl<R, Offset> Eq for UnitHeader<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for Register

impl Eq for RunTimeEndian

impl<R> Eq for EhFrame<R> where
    R: Reader + Eq

impl Eq for DwCfa

impl<R, Offset> Eq for CommonInformationEntry<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for DwLle

impl Eq for LittleEndian

impl<T> Eq for DebugRngListsIndex<T> where
    T: Eq

impl Eq for Encoding

impl<T> Eq for RangeListsOffset<T> where
    T: Eq

impl<R, Offset> Eq for AttributeValue<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl<R, Offset> Eq for CompilationUnitHeader<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for DwForm

impl Eq for DwAccess

impl<R, Offset> Eq for LineInstruction<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for ValueType

impl<T> Eq for DebugInfoOffset<T> where
    T: Eq

impl Eq for DwAte

impl<R> Eq for RegisterRule<R> where
    R: Reader + Eq

impl Eq for DwOrd

impl<R, Offset> Eq for FileEntry<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for DwLne

impl<R> Eq for CfaRule<R> where
    R: Reader + Eq

impl Eq for Format

impl<T> Eq for DebugFrameOffset<T> where
    T: Eq

impl<T> Eq for DebugRngListsBase<T> where
    T: Eq

impl Eq for DwLang

impl<'bases, Section, R> Eq for PartialFrameDescriptionEntry<'bases, Section, R> where
    R: Eq + Reader,
    Section: Eq + UnwindSection<R>,
    <R as Reader>::Offset: Eq,
    <Section as UnwindSection<R>>::Offset: Eq

impl Eq for Error

impl Eq for DwEnd

impl<R> Eq for CallFrameInstruction<R> where
    R: Reader + Eq

impl Eq for DwUt

impl<T> Eq for DebugLineOffset<T> where
    T: Eq

impl<T> Eq for DebugStrOffset<T> where
    T: Eq

impl<T> Eq for DebugStrOffsetsIndex<T> where
    T: Eq

impl Eq for DwVis

impl<T> Eq for DebugAddrBase<T> where
    T: Eq

impl<R, Offset> Eq for TypeUnitHeader<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl Eq for DwChildren

impl<T> Eq for DebugAddrIndex<T> where
    T: Eq

impl<'input, Endian> Eq for EndianSlice<'input, Endian> where
    Endian: Eq + Endianity, 

impl<T> Eq for UnitOffset<T> where
    T: Eq

impl<R, Offset> Eq for FrameDescriptionEntry<R, Offset> where
    Offset: Eq + ReaderOffset,
    R: Eq + Reader<Offset = Offset>, 

impl<T> Eq for DebugLocListsBase<T> where
    T: Eq

impl<R> Eq for EhFrameHdr<R> where
    R: Reader + Eq

impl Eq for DwDefaulted

impl<E> Eq for I16Bytes<E> where
    E: Endian + Eq

impl Eq for BigEndian

impl Eq for SectionKind

impl Eq for SymbolSection

impl Eq for SymbolKind

impl Eq for Architecture

impl Eq for RelocationEncoding

impl Eq for RelocationKind

impl Eq for Error

impl Eq for SymbolScope

impl Eq for Endianness

impl<E> Eq for I32Bytes<E> where
    E: Endian + Eq

impl Eq for CompressionFormat

impl Eq for BinaryFormat

impl<E> Eq for U16Bytes<E> where
    E: Endian + Eq

impl Eq for AddressSize

impl Eq for SectionFlags

impl<'data> Eq for CompressedData<'data>

impl Eq for SectionIndex

impl Eq for SymbolIndex

impl<E> Eq for U32Bytes<E> where
    E: Endian + Eq

impl<'data> Eq for Bytes<'data>

impl Eq for LittleEndian

impl<E> Eq for U64Bytes<E> where
    E: Endian + Eq

impl<E> Eq for I64Bytes<E> where
    E: Endian + Eq

impl Eq for FileFlags

impl Eq for RelocationTarget

impl<Section> Eq for SymbolFlags<Section> where
    Section: Eq

impl Eq for TDEFLStatus

impl Eq for MZFlush

impl Eq for StreamResult

impl Eq for CompressionStrategy

impl Eq for MZStatus

impl Eq for CompressionLevel

impl Eq for TDEFLFlush

impl Eq for DataFormat

impl Eq for TINFLStatus

impl Eq for MZError

impl<T> Eq for OnceCell<T> where
    T: Eq
[src]

impl<T> Eq for OnceCell<T> where
    T: Eq
[src]

impl Eq for IsNormalized

impl<A> Eq for TinyVec<A> where
    A: Array,
    <A as Array>::Item: Eq

impl<A> Eq for ArrayVec<A> where
    A: Array,
    <A as Array>::Item: Eq

impl Eq for SecretKey

impl Eq for Message

impl Eq for AffineStorage

impl Eq for Signature

impl<D> Eq for SharedSecret<D> where
    D: Eq + Digest,
    <D as Digest>::OutputSize: Eq

impl Eq for PublicKey

impl Eq for Affine

impl Eq for Jacobian

impl Eq for Field

impl Eq for Error

impl Eq for Scalar

impl Eq for RecoveryId

impl<T> Eq for AllowStdIo<T> where
    T: Eq
[src]

impl Eq for Aborted[src]

impl Eq for Canceled[src]

impl Eq for SendError[src]

impl<T> Eq for TrySendError<T> where
    T: Eq
[src]

impl Eq for TryReserveError

impl<T, S> Eq for HashSet<T, S> where
    S: BuildHasher,
    T: Eq + Hash

impl<K, V, S> Eq for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher,
    V: Eq

impl Eq for ExecutionStrategy[src]

impl Eq for ExecutionError[src]

impl Eq for Error

impl Eq for StorageProof

impl<HO> Eq for Record<HO> where
    HO: Eq

impl Eq for NibbleSlicePlan

impl<'a> Eq for Node<'a>

impl<'a> Eq for NodeHandle<'a>

impl<D> Eq for OwnedNode<D> where
    D: Borrow<[u8]> + Eq

impl Eq for NibbleVec

impl<T, E> Eq for TrieError<T, E> where
    E: Eq,
    T: Eq

impl<HO, CE> Eq for Error<HO, CE> where
    CE: Eq,
    HO: Eq

impl Eq for NodeHandlePlan

impl<'a> Eq for NibbleSlice<'a>

impl Eq for NodePlan

impl<H, KF, T, M> Eq for MemoryDB<H, KF, T, M> where
    H: Hasher,
    KF: KeyFunction<H>,
    M: MemTracker<T> + Eq,
    T: Eq + MaybeDebug,
    <KF as KeyFunction<H>>::Key: Eq,
    <KF as KeyFunction<H>>::Key: MaybeDebug, 

impl<T> Eq for MemCounter<T> where
    T: Eq

impl<T> Eq for NoopTracker<T> where
    T: Eq

impl<A, B> Eq for EitherOrBoth<A, B> where
    A: Eq,
    B: Eq
[src]

impl<T> Eq for FoldWhile<T> where
    T: Eq
[src]

impl<L, R> Eq for Either<L, R> where
    L: Eq,
    R: Eq
[src]

impl Eq for RuntimeMetadataV11[src]

impl Eq for RuntimeMetadataDeprecated[src]

impl Eq for AnySignature[src]

impl<'a, T> Eq for Request<'a, T> where
    T: Eq
[src]

impl Eq for Keccak256[src]

impl Eq for MultiSignature[src]

impl Eq for Headers[src]

impl Eq for ValidTransaction[src]

impl<Header, Extrinsic> Eq for Block<Header, Extrinsic> where
    Extrinsic: MaybeSerialize + Eq,
    Header: Eq
[src]

impl<'a> Eq for OpaqueDigestItemId<'a>[src]

impl Eq for TestSignature[src]

impl Eq for ChangesTrieSignal[src]

impl<'a> Eq for PiecewiseLinear<'a>[src]

impl<B> Eq for BlockAndTimeDeadline<B> where
    B: BlockNumberProvider + Eq
[src]

impl Eq for Error[src]

impl<Block> Eq for BlockId<Block> where
    Block: Block + Eq,
    <Block as Block>::Hash: Eq
[src]

impl Eq for PendingRequest[src]

impl<AccountId, Call, Extra> Eq for CheckedExtrinsic<AccountId, Call, Extra> where
    AccountId: Eq,
    Call: Eq,
    Extra: Eq
[src]

impl<Call, Extra> Eq for TestXt<Call, Extra> where
    Call: Eq,
    Extra: Eq
[src]

impl Eq for UintAuthorityId[src]

impl Eq for OpaqueExtrinsic[src]

impl<Hash> Eq for Digest<Hash> where
    Hash: Eq
[src]

impl<Number, Hash> Eq for Header<Number, Hash> where
    Hash: Hash + Eq,
    Number: Eq + Into<U256> + TryFrom<U256> + Copy,
    <Hash as Hash>::Output: Eq
[src]

impl<Xt> Eq for ExtrinsicWrapper<Xt> where
    Xt: Eq
[src]

impl Eq for Method[src]

impl<Hash> Eq for DigestItem<Hash> where
    Hash: Eq
[src]

impl<Address, Call, Signature, Extra> Eq for UncheckedExtrinsic<Address, Call, Signature, Extra> where
    Address: Eq,
    Call: Eq,
    Extra: Eq + SignedExtension,
    Signature: Eq
[src]

impl Eq for Era[src]

impl<'a, Hash> Eq for DigestItemRef<'a, Hash> where
    Hash: 'a + Eq
[src]

impl Eq for InvalidTransaction[src]

impl Eq for RuntimeString[src]

impl Eq for MultiSigner[src]

impl Eq for UnknownTransaction[src]

impl Eq for TransactionSource[src]

impl<Block> Eq for SignedBlock<Block> where
    Block: Eq
[src]

impl Eq for TransactionValidityError[src]

impl<Xt> Eq for Block<Xt> where
    Xt: Eq
[src]

impl<Info> Eq for DispatchErrorWithPostInfo<Info> where
    Info: Eq + PartialEq<Info> + Clone + Copy + Encode + Decode + Printable
[src]

impl Eq for ModuleId[src]

impl Eq for BlakeTwo256[src]

impl Eq for Signature

impl Eq for Signature

impl Eq for Public

impl Eq for Public

impl Eq for Public

impl Eq for Signature

impl Eq for Rational128[src]

impl Eq for FixedI64[src]

impl Eq for PerU16[src]

impl Eq for BigUint[src]

impl Eq for FixedI128[src]

impl Eq for Permill[src]

impl Eq for Perbill[src]

impl Eq for Perquintill[src]

impl Eq for FixedU128[src]

impl Eq for Percent[src]

Loading content...

Implementors

impl Eq for DispatchError[src]

impl Eq for Void[src]

impl Eq for RuntimeMetadata[src]

impl Eq for StorageEntryModifier[src]

impl Eq for StorageEntryType[src]

impl Eq for StorageHasher[src]

impl Eq for ChildInfo

impl Eq for BalanceStatus[src]

impl Eq for ExistenceRequirement[src]

impl Eq for WithdrawReason[src]

impl Eq for DispatchClass[src]

impl Eq for Pays[src]

impl Eq for frame_support::dispatch::fmt::Error[src]

impl Eq for PhantomPinned[src]

impl Eq for ErrorMetadata[src]

impl Eq for FunctionArgumentMetadata[src]

impl Eq for FunctionMetadata[src]

impl Eq for ModuleConstantMetadata[src]

impl Eq for EventMetadata[src]

impl Eq for OuterEventMetadata[src]

impl Eq for DefaultByteGetter[src]

impl Eq for ExtrinsicMetadata[src]

impl Eq for ModuleMetadata[src]

impl Eq for RuntimeMetadataPrefixed[src]

impl Eq for StorageEntryMetadata[src]

impl Eq for StorageMetadata[src]

impl Eq for CallMetadata[src]

impl Eq for WithdrawReasons[src]

impl Eq for DispatchInfo[src]

impl Eq for PostDispatchInfo[src]

impl Eq for RuntimeDbWeight[src]

impl<B, O> Eq for DecodeDifferent<B, O> where
    B: Encode + Eq + PartialEq<B> + 'static,
    O: Encode + Eq + PartialEq<O> + 'static, 
[src]

impl<BlockNumber: Eq> Eq for DispatchTime<BlockNumber>[src]

impl<E> Eq for FnEncode<E> where
    E: Eq + Encode + 'static, 
[src]

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

impl<T> Eq for Vec<T> where
    T: Eq
[src]

impl<T, E> Eq for Result<T, E> where
    E: Eq,
    T: Eq
[src]

Loading content...