pub trait MaybeRefUnwindSafe: RefUnwindSafe { }Expand description
A trait that requires RefUnwindSafe when feature = std.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<T: RefUnwindSafe> MaybeRefUnwindSafe for T
Available on crate feature
std only.