processor.rs 154 B

1234567
  1. use core::{ops::Deref, pin::Pin};
  2. pub trait Processor {
  3. fn local() -> impl Deref<Target = Pin<&'static mut Self>>
  4. where
  5. Self: 'static;
  6. }