Fixed PartialEq implementation to PusTc struct #12

Merged
muellerr merged 5 commits from partial_eq_fix into main 2023-01-26 21:02:41 +01:00
Showing only changes of commit 34bf9780af - Show all commits

View File

@ -442,7 +442,9 @@ impl<'app_data> PusTc<'app_data> {
impl PartialEq for PusTc<'_> {
fn eq(&self, other: &Self) -> bool {
self.sp_header == other.sp_header && self.sec_header == other.sec_header && self.app_data == other.app_data
self.sp_header == other.sp_header
&& self.sec_header == other.sec_header
&& self.app_data == other.app_data
}
}