Skip to content

Commit 419949b

Browse files
authored
Add PartialEq, Eq, Hash as TiffUnsupportedError implements this
1 parent 8e2acea commit 419949b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub type Result<T> = result::Result<T, Error>;
1010
/// An enumeration over JPEG features (currently) unsupported by this library.
1111
///
1212
/// Support for features listed here may be included in future versions of this library.
13-
#[derive(Debug, Clone)]
13+
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1414
pub enum UnsupportedFeature {
1515
/// Hierarchical JPEG.
1616
Hierarchical,

0 commit comments

Comments
 (0)