pub trait TaskExtRef<T: Sized> {
// Required method
fn task_ext(&self) -> &T;
}Available on crate feature
multitask only.Expand description
A trait to convert TaskInner::task_ext_ptr to the reference of the
concrete type.