pub unsafe fn write_unaligned<T>(dst: *mut T, src: T)
Overwrites a memory location with the given value without reading or dropping the old value.
Unlike write
, the pointer may be unaligned.
This operation is marked unsafe because it accepts a raw pointer.
It does not drop the contents of dst
. This is safe, but it could leak allocations or resources, so care must be taken not to overwrite an object that should be dropped.
Additionally, it does not drop src
. Semantically, src
is moved into the location pointed to by dst
.
This is appropriate for initializing uninitialized memory, or overwriting memory that has previously been read
from.
Basic usage:
let mut x = 0; let y = &mut x as *mut i32; let z = 12; unsafe { std::ptr::write_unaligned(y, z); assert_eq!(std::ptr::read_unaligned(y), 12); }
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ptr/fn.write_unaligned.html