lazy_static/
inline_lazy.rs
1extern crate core;
9extern crate std;
10
11use self::std::cell::Cell;
12use self::std::mem::MaybeUninit;
13use self::std::prelude::v1::*;
14use self::std::sync::Once;
15#[allow(deprecated)]
16pub use self::std::sync::ONCE_INIT;
17
18#[allow(dead_code)] pub struct Lazy<T: Sync>(Cell<MaybeUninit<T>>, Once);
20
21impl<T: Sync> Lazy<T> {
22 #[allow(deprecated)]
23 pub const INIT: Self = Lazy(Cell::new(MaybeUninit::uninit()), ONCE_INIT);
24
25 #[inline(always)]
26 pub fn get<F>(&'static self, f: F) -> &T
27 where
28 F: FnOnce() -> T,
29 {
30 self.1.call_once(|| {
31 self.0.set(MaybeUninit::new(f()));
32 });
33
34 unsafe { &*(*self.0.as_ptr()).as_ptr() }
37 }
38}
39
40unsafe impl<T: Sync> Sync for Lazy<T> {}
41
42#[macro_export]
43#[doc(hidden)]
44macro_rules! __lazy_static_create {
45 ($NAME:ident, $T:ty) => {
46 static $NAME: $crate::lazy::Lazy<$T> = $crate::lazy::Lazy::INIT;
47 };
48}