Trait byte_slice_cast::ToMutByteSlice
source · pub unsafe trait ToMutByteSlicewhere
Self: Sized,{
// Required method
fn to_mut_byte_slice<T: AsMut<[Self]> + ?Sized>(slice: &mut T) -> &mut [u8] ⓘ;
}
Expand description
Trait for converting from a mutable slice of a fundamental, built-in numeric type to a mutable byte slice.
This trait is an implementation detail. Use the AsMutByteSlice
trait.