pub trait Unpacked<T>: Copy + Sized + AsRef<[T]> + AsMut<[T]> + Index<usize, Output = T> + IndexMut<usize, Output = T> + for<'a> TryFrom<&'a [T], Error = TryFromSliceError> {
const LENGTH: usize;
// Required method
fn zero() -> Self;
}
Expand description
A byte slice of Unpackable
denoting complete unpacked arrays.
Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.