Trait kernel::Module

source ·
pub trait Module: Sized + Sync {
    // Required method
    fn init(module: &'static ThisModule) -> Result<Self>;
}
Expand description

The top level entrypoint to implementing a kernel module.

For any teardown or cleanup operations, your type may implement Drop.

Required Methods§

source

fn init(module: &'static ThisModule) -> Result<Self>

Called at module initialization time.

Use this method to perform whatever setup or registration your module should do.

Equivalent to the module_init macro in the C API.

Implementors§