pub trait ToSlice<T> { // Required method fn to_slice(&self) -> &[T]; }
Helper trait for converting types into slices.
Convert this type into a slice.