#[derive(Zeroable)]
Derives the Zeroable trait for the given struct.
Zeroable
This can only be used for structs where every field implements the Zeroable trait.
#[derive(Zeroable)] pub struct DriverData { id: i64, buf_ptr: *mut u8, len: usize, }