macros

Derive Macro Zeroable

Source
#[derive(Zeroable)]
Expand description

Derives the Zeroable trait for the given struct.

This can only be used for structs where every field implements the Zeroable trait.

§Examples

use kernel::macros::Zeroable;

#[derive(Zeroable)]
pub struct DriverData {
    id: i64,
    buf_ptr: *mut u8,
    len: usize,
}