pub trait IntoSliceIdx<I, T: ?Sized> {
type Output: SliceIndex<T>;
// Required method
fn into_slice_idx(self) -> Self::Output;
}
Expand description
Helper trait for indexing operations with a custom index type.
pub trait IntoSliceIdx<I, T: ?Sized> {
type Output: SliceIndex<T>;
// Required method
fn into_slice_idx(self) -> Self::Output;
}
Helper trait for indexing operations with a custom index type.