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