pub trait ArrayExt<'a>: 'a {
// Required method
fn into_slice(self) -> &'a [u8] ⓘ;
}Expand description
Shared trait for all array types.
Required Methods§
Sourcefn into_slice(self) -> &'a [u8] ⓘ
fn into_slice(self) -> &'a [u8] ⓘ
Convert the array into a slice of bytes.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".