Compile on windows

This commit is contained in:
John Doty 2022-10-08 21:38:01 -07:00
parent 3157ff3cbb
commit 2faed6267e
3 changed files with 32 additions and 4 deletions

View file

@ -22,6 +22,8 @@ pub enum Error {
MessageUnknown,
MessageCorrupt,
ConnectionReset,
ProcFs(String),
NotSupported,
}
impl PartialEq for Error {
@ -56,6 +58,14 @@ impl PartialEq for Error {
ConnectionReset => true,
_ => false,
},
ProcFs(a) => match other {
ProcFs(b) => a == b,
_ => false,
},
NotSupported => match other {
NotSupported => true,
_ => false,
},
}
}
}