linux-rust-bindings 0.1.3

Rust structs for Linux kernel structures
Documentation
1
2
3
4
5
6
7
8
9
10
/* automatically generated by rust-bindgen 0.69.1 */

pub type __kernel_ulong_t = ::core::ffi::c_ulong;
pub type __kernel_size_t = __kernel_ulong_t;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct iovec {
    pub iov_base: *mut ::core::ffi::c_void,
    pub iov_len: __kernel_size_t,
}