error[E0277]: the type `UnsafeCell` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary --> tests/compile/ref_nounwindsafe.rs:8:5 | 8 | catch_unwind(move || table.set("a", "b").unwrap()); | ^^^^^^^^^^^^ `UnsafeCell` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary | = help: within `Lua`, the trait `RefUnwindSafe` is not implemented for `UnsafeCell` = note: required because it appears within the type `alloc::sync::ArcInner>` = note: required because it appears within the type `PhantomData>>` = note: required because it appears within the type `Arc>` = note: required because it appears within the type `Lua` = note: required because of the requirements on the impl of `UnwindSafe` for `&Lua` = note: required because it appears within the type `mlua::types::LuaRef<'_>` = note: required because it appears within the type `LuaTable<'_>` note: required because it's used within this closure --> tests/compile/ref_nounwindsafe.rs:8:18 | 8 | catch_unwind(move || table.set("a", "b").unwrap()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ note: required by a bound in `catch_unwind` --> $RUST/std/src/panic.rs | | pub fn catch_unwind R + UnwindSafe, R>(f: F) -> Result { | ^^^^^^^^^^ required by this bound in `catch_unwind`