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;

    fn zero() -> Self;
}
Expand description

A byte slice of Unpackable denoting complete unpacked arrays.

Required Associated Constants§

Required Methods§

Implementations on Foreign Types§

Implementors§