We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fdc33f commit 6144aaaCopy full SHA for 6144aaa
src/lazy_static.rs
@@ -21,6 +21,9 @@ use crate::runtime::storage::StorageKey;
21
use crate::sync::Once;
22
use std::marker::PhantomData;
23
24
+#[doc(hidden)]
25
+pub use core::ops::Deref as __Deref;
26
+
27
/// Shuttle's implementation of `lazy_static::Lazy` (aka the unstable `std::lazy::Lazy`).
28
// Sadly, the fields of this thing need to be public because function pointers in const fns are
29
// unstable, so an explicit instantiation is the only way to construct this struct. User code should
0 commit comments