pub unsafe trait NonUnwinding: Allocator { }
Expand description
§Safety
Allocator implementing this trait should not panic with stack unwinding.
This means, either it should not initiate panic directly or indirectly,
either it should be strongly linked
with the standard unstable panic_abort
crate.