Trait NonUnwinding

Source
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.

Implementations on Foreign Types§

Source§

impl<'a, T: NonUnwinding + ?Sized> NonUnwinding for &'a T

Implementors§