pub unsafe trait PlaceDrop<P>{
// Required method
unsafe fn drop(ptr: *mut Self, p: &P);
}Expand description
Drop the contents of a subplace.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".