pub unsafe trait PlaceRead<P>{
// Required method
unsafe fn read(ptr: *const Self, p: &P) -> P::Target
where P::Target: Sized;
}Expand description
Read a value from a subplace.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".