tamer: parse::state::ParseState: Remove `Eq` derivation

This is unneeded and is just a pain.  If ever we need `Eq`, it could be
implemented only for `ParseState`s that actually need it.

DEV-13708
main
Mike Gerwitz 2023-03-07 15:27:05 -05:00
parent 8cb781ccca
commit 266c9eb05a
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ pub trait ClosedParseState = ParseState<Super = Self>;
/// but is not necessarily true for smaller, specialized parsers intended
/// for use as components of a larger parser
/// (in a spirit similar to parser combinators).
pub trait ParseState: PartialEq + Eq + Display + Debug + Sized
pub trait ParseState: PartialEq + Display + Debug + Sized
where
Self: Into<Self::Super>,
Self::Error: Into<<Self::Super as ParseState>::Error>,