Open kkysen opened 2 months ago
Rust 1.82 will stabilize &raw mut finally, and also make the dereference in &raw mut (*ptr).field safe, so we can now make that safe and remove the unsafe block.
&raw mut
&raw mut (*ptr).field
unsafe
Rust 1.82 will stabilize
&raw mut
finally, and also make the dereference in&raw mut (*ptr).field
safe, so we can now make that safe and remove theunsafe
block.