pub unsafe trait PlaceDeref<P>{
// Required method
unsafe fn double_deref(ptr: *mut Self, p: &P) -> *const P::Target;
}Expand description
Allows dereferencing a subplace that contains a pointer. The returned pointer will only be used for further place operations.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".