macro_rules! set_impl {
($t: ty) => { ... };
}Expand description
Register a Kernel implementation for delay functions
ยงUsage
struct MyKernel;
impl Kernel for MyKernel {
fn sleep(us: u64) {
// Implementation...
}
}
set_impl!(MyKernel);