1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use core::fmt;
mod wake;
pub use self::wake::{UnsafeWake, Waker};
mod context;
pub use self::context::Context;
if_std! {
    pub use self::wake::Wake;
    mod data;
    pub use self::data::LocalKey;
}
#[cfg(not(feature = "std"))]
mod data {
    pub struct LocalMap;
    pub fn local_map() -> LocalMap {
        LocalMap
    }
}
#[cfg_attr(feature = "nightly", cfg(target_has_atomic = "ptr"))]
mod atomic_waker;
#[cfg_attr(feature = "nightly", cfg(target_has_atomic = "ptr"))]
pub use self::atomic_waker::AtomicWaker;
pub struct LocalMap {
    #[allow(dead_code)]
    inner: data::LocalMap,
}
impl LocalMap {
    
    pub fn new() -> LocalMap {
        LocalMap { inner: data::local_map() }
    }
}
impl fmt::Debug for LocalMap {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("LocalMap")
         .finish()
    }
}