pub type SerialForKernelType<'a, const N: usize> = Box<dyn FnMut(KernelArgs<N>) + 'a>;
Expand description
Serial kernel type. Does not depend on enabled feature(s).
This is the minimal required trait implementation for closures passed to a
for_each
statement.
Aliased Typeยง
struct SerialForKernelType<'a, const N: usize>(/* private fields */);