usecrate::PointerLength;/// This trait is implemented for all slice-like structures. Currently there are only 2 of these types: arrays `[T; N]` and slices `[T]`.
pubtraitSliceLike: PointerLength {/// The type of the elements held by the slice-like structure.
typeElement;}impl<T> SliceLike for [T] {typeElement= T;}impl<T, const N:usize> SliceLike for [T; N] {typeElement= T;}