pub unsafe trait ToMutByteSlicewhere
    Self: Sized,
{ fn to_mut_byte_slice<T: AsMut<[Self]> + ?Sized>(slice: &mut T) -> &mut [u8]Notable traits for &[u8]impl Read for &[u8]impl Write for &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.

Required Methods

Convert from a mutable slice of a fundamental, built-in numeric type to a mutable byte slice

Implementations on Foreign Types

Implementors