Skip to content

Commit 0193c15

Browse files
authored
Merge pull request #55 from creeper6530/master
Add a derive(PartialEq, Eq) to DisplayError
2 parents dbb7eb9 + a752f9b commit 0193c15

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, Copy)]
1616
#[cfg_attr(feature = "defmt-03", derive(defmt::Format))]
1717
#[non_exhaustive]
1818
pub enum DisplayError {

0 commit comments

Comments
 (0)