Searched refs:Lazy (Results 1 – 3 of 3) sorted by relevance
28 pub struct Lazy<T> { struct37 impl<T> Lazy<T> { argument40 pub const fn new() -> Lazy<T> { in new()41 Lazy { in new()120 impl<T> Deref for Lazy<T> { implementation129 impl<T> DerefMut for Lazy<T> { implementation136 impl<T: Debug> Debug for Lazy<T> { implementation146 impl<T> Drop for Lazy<T> { implementation156 unsafe impl<T: Send + Sync> Sync for Lazy<T> {} implementation157 unsafe impl<T: Send> Send for Lazy<T> {} implementation
7 libs::lazy_init::Lazy,74 pub const fn define_lazy() -> Lazy<Self> { in define_lazy()75 Lazy::<Self>::new() in define_lazy()
104 static CASTER_MAP: once_cell::sync::Lazy<HashMap<(TypeId, TypeId), BoxedCaster, BuildFastHasher>> =105 once_cell::sync::Lazy::new(|| {