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.