Add `Thread::{into_raw, from_raw}`
Public API:
```rust
#![unstable(feature = "thread_raw", issue = "97523")]
impl Thread {
pub fn into_raw(self) -> *const ();
pub unsafe fn from_raw(ptr: *const ()) -> Thread;
}
```
ACP: https://github.com/rust-lang/libs-team/issues/200
|
||
|---|---|---|
| .. | ||
| local | ||
| local.rs | ||
| mod.rs | ||
| scoped.rs | ||
| tests.rs | ||