commit | 17961b1962392a47cac53c84c3e7574013f58b2d | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Thu Nov 16 17:07:45 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Nov 16 17:07:45 2023 +0000 |
tree | 244858a1002dcc3073c99a9959dd708d2f5dcef9 | |
parent | ae152412f18af5ba194ab9612fd5b9e625637da5 [diff] | |
parent | 55f438cd07f950f3581daa0454b9dd495c12333e [diff] |
Merge "libfdt: Make Phandle Eq, PartialEq, Ord, PartialOrd" into main
diff --git a/libs/libfdt/src/lib.rs b/libs/libfdt/src/lib.rs index b369390..0bacdde 100644 --- a/libs/libfdt/src/lib.rs +++ b/libs/libfdt/src/lib.rs
@@ -526,7 +526,7 @@ /// Phandle of a FDT node #[repr(transparent)] -#[derive(Debug, Copy, Clone, PartialEq)] +#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)] pub struct Phandle(u32); impl Phandle {