rdma_sys/lib.rs
1#![deny(warnings)]
2#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
3#![allow(deref_nullptr)] // TODO(fxbug.dev/74605): Remove once bindgen is fixed.
4#![allow(clippy::missing_safety_doc, clippy::too_many_arguments)]
5
6use libc::*;
7
8include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
9
10mod opcode;
11mod types;
12mod verbs;
13
14pub use self::opcode::*;
15pub use self::types::*;
16pub use self::verbs::*;