Skip to content

Commit 9978743

Browse files
phip1611nicholasbishop
authored andcommitted
error: derive PartialEq
This is necessary as preparation for the integration test.
1 parent 0526601 commit 9978743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/result/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use core::fmt::Debug;
33

44
/// Errors emitted from UEFI entry point must propagate erronerous UEFI statuses,
55
/// and may optionally propagate additional entry point-specific data.
6-
#[derive(Debug)]
6+
#[derive(Debug, PartialEq, Eq)]
77
pub struct Error<Data: Debug = ()> {
88
status: Status,
99
data: Data,

0 commit comments

Comments
 (0)