Skip to content

Commit 52a31eb

Browse files
committed
Add a derive(PartialEq, Eq) to DisplayError
1 parent dbb7eb9 commit 52a31eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub mod prelude;
1212

1313
/// A ubiquitous error type for all kinds of problems which could happen when communicating with a
1414
/// display
15-
#[derive(Clone, Debug)]
15+
#[derive(Clone, Debug, PartialEq, Eq)]
1616
#[cfg_attr(feature = "defmt-03", derive(defmt::Format))]
1717
#[non_exhaustive]
1818
pub enum DisplayError {

0 commit comments

Comments
 (0)