pub trait NotUnwindSafe {
const IS_UNWIND_SAFE: bool = false;
}Expand description
A helper trait for TypeHelper to detect not UnwindSafe types.
See TypeHelper documentation for more details.
Provided Associated Constants§
const IS_UNWIND_SAFE: bool = false
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.