Trait DropValue

Source
pub unsafe trait DropValue {
    // Provided method
    unsafe fn drop_values(&mut self) { ... }
}
Expand description

§Safety

You should not need to ever use it directly.

If you call this method manually this could lead to a double free error.

Provided Methods§

Source

unsafe fn drop_values(&mut self)

§Safety

This method recursively drops all the values from the heap. Therfore multiple calls to this method could lead to errors.

Implementors§