Function bytes_of_mut
pub fn bytes_of_mut<T>(t: &mut T) -> &mut [u8] ⓘwhere
T: NoUninit + AnyBitPattern,
Available on crate feature
dep_bytemuck
only.Expand description
Re-interprets &mut T
as &mut [u8]
.
Any ZST becomes an empty slice, and in that case the pointer value of that empty slice might not match the pointer value of the input reference.