pub type JoinHandle<T = ()> = JoinHandleBorrowed<'static, T>;Expand description
Heap-mode JoinHandle. Alias of JoinHandleBorrowed with
'storage = 'static (kernel owns the storage, no caller borrow).
Matches the shape of std::thread::JoinHandle for source-level
compatibility with std-style code.
Aliased Typeยง
pub struct JoinHandle<T = ()> { /* private fields */ }