pub unsafe trait ToByteSlicewhere
Self: Sized,{
// Required method
fn to_byte_slice<T: AsRef<[Self]> + ?Sized>(slice: &T) -> &[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.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.