1
Fork 0

Add missing Eq implementations

This commit is contained in:
Guillaume Gomez 2016-09-12 21:37:41 +02:00
parent 888970370a
commit b4c739dbdd
10 changed files with 16 additions and 16 deletions

View file

@ -101,7 +101,7 @@ impl FromStr for bool {
}
/// An error returned when parsing a `bool` from a string fails.
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[stable(feature = "rust1", since = "1.0.0")]
pub struct ParseBoolError { _priv: () }