We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c754031 commit 9723fbaCopy full SHA for 9723fba
src/unix/linux_like/linux/mod.rs
@@ -821,6 +821,15 @@ s! {
821
pub val: ::c_int,
822
}
823
824
+ // linux/openat2.h
825
+ #[non_exhaustive]
826
+ pub struct open_how {
827
+ pub flags: ::__u64,
828
+ pub mode: ::__u64,
829
+ pub resolve: ::__u64,
830
+ }
831
+
832
833
// linux/sctp.h
834
835
pub struct sctp_initmsg {
@@ -6461,6 +6470,3 @@ cfg_if! {
6461
6470
6462
6471
mod arch;
6463
6472
pub use self::arch::*;
6464
-
6465
-mod non_exhaustive;
6466
-pub use self::non_exhaustive::*;
src/unix/linux_like/linux/non_exhaustive.rs
0 commit comments