pub trait RawDrop {
// Required method
unsafe fn raw_drop(ptr: *mut c_void);
// Provided method
fn raw_drop_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Sync + Send)> { ... }
}Expand description
Trait implemented automatically for types that implement Drop and can be used to drop the
type through a raw pointer.
Required Methods§
Provided Methods§
Object Safety§
This trait is not object safe.