Trait byte_slice_cast::ToByteSlice
source · [−]pub unsafe trait ToByteSlicewhere
Self: Sized,{
fn to_byte_slice<T: AsRef<[Self]> + ?Sized>(slice: &T) -> &[u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
;
}
Expand description
Trait for converting from an immutable slice of a fundamental, built-in numeric type to an immutable byte slice.
This trait is an implementation detail. Use the AsByteSlice
trait.