pub unsafe trait PlaceWrite<P>{
// Required method
unsafe fn write(ptr: *mut Self, p: &P, x: P::Target)
where P::Target: Sized;
}Expand description
Write to a subplace.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".