Constant internment::LOCAL_STUFF []

pub const LOCAL_STUFF: LocalKey<RefCell<Vec<Box<Any>>>> = {
    #[inline]
    fn __init() -> RefCell<Vec<Box< Any>>> { <RefCell>::new(<Vec>::new()) }
    unsafe fn __getit()
     ->
         ::option::Option<&'static ::cell::UnsafeCell<::option::Option<RefCell<Vec<Box< Any>>>>>> {
                                                                                                      #[thread_local]
                                                                                                      #[cfg(target_thread_local)]
                                                                                                      static __KEY:
                                                                                                             ::thread::__FastLocalKeyInner<RefCell<Vec<Box< Any>>>>
                                                                                                             =
                                                                                                          <::thread::__FastLocalKeyInner>::new();
                                                                                                      __KEY.get()
                                                                                                  }
    unsafe { <::thread::LocalKey>::new(__getit, __init) }
}