Enable clippy's derive_partial_eq_without_eq linter (#7203)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Justin Traglia
2024-03-18 17:33:53 -05:00
committed by GitHub
parent 89b188e9ae
commit 3861bc05fa
20 changed files with 37 additions and 36 deletions

View File

@ -46,7 +46,7 @@ use reth_primitives::{
use std::fmt;
/// Enum for the types of tables present in libmdbx.
#[derive(Debug, PartialEq, Copy, Clone)]
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
pub enum TableType {
/// key value table
Table,