We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7398bc4 commit 43ad692Copy full SHA for 43ad692
1 file changed
src/unix/linux_like/android/b64/aarch64/mod.rs
@@ -99,6 +99,22 @@ s_no_extra_traits! {
99
}
100
101
102
+cfg_if! {
103
+ if #[cfg(feature = "extra_traits")] {
104
+ impl PartialEq for __c_anonymous_uc_sigmask {
105
+ fn eq(&self, other: &__c_anonymous_uc_sigmask) -> bool {
106
+ unsafe { self.uc_sigmask == other.uc_sigmask }
107
+ }
108
109
+ impl Eq for __c_anonymous_uc_sigmask {}
110
+ impl hash::Hash for __c_anonymous_uc_sigmask {
111
+ fn hash<H: hash::Hasher>(&self, state: &mut H) {
112
+ unsafe { self.uc_sigmask.hash(state) }
113
114
115
116
+}
117
+
118
pub const O_DIRECT: c_int = 0x10000;
119
pub const O_DIRECTORY: c_int = 0x4000;
120
pub const O_NOFOLLOW: c_int = 0x8000;
0 commit comments