kernel::workqueue

Trait WorkItem

Source
pub trait WorkItem<const ID: u64 = 0> {
    type Pointer: WorkItemPointer<ID>;

    // Required method
    fn run(this: Self::Pointer);
}
Expand description

Defines the method that should be called when this work item is executed.

This trait is used when the work_struct field is defined using the Work helper.

Required Associated Types§

Source

type Pointer: WorkItemPointer<ID>

The pointer type that this struct is wrapped in. This will typically be Arc<Self> or Pin<KBox<Self>>.

Required Methods§

Source

fn run(this: Self::Pointer)

The method that should be called when this work item is executed.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§