Function bytemuck::try_cast_slice_mut
source · pub fn try_cast_slice_mut<A: NoUninit + AnyBitPattern, B: NoUninit + AnyBitPattern>(
a: &mut [A]
) -> Result<&mut [B], PodCastError>
Expand description
Try to convert &mut [A]
into &mut [B]
(possibly with a change in
length).
As try_cast_slice
, but &mut
.