We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95fbee commit cd78c71Copy full SHA for cd78c71
src/unix/linux_like/linux/mod.rs
@@ -916,6 +916,7 @@ cfg_if! {
916
}
917
918
919
+ #[cfg(not(target_env = "musl"))]
920
impl PartialEq for dirent64 {
921
fn eq(&self, other: &dirent64) -> bool {
922
self.d_ino == other.d_ino
@@ -930,8 +931,10 @@ cfg_if! {
930
931
932
933
934
935
impl Eq for dirent64 {}
936
937
938
impl ::fmt::Debug for dirent64 {
939
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
940
f.debug_struct("dirent64")
@@ -944,6 +947,7 @@ cfg_if! {
944
947
945
948
946
949
950
951
impl ::hash::Hash for dirent64 {
952
fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
953
self.d_ino.hash(state);
0 commit comments