pub trait GetUnchecked<I>: CheckIndex<I> {
type Output: ?Sized;
// Required method
unsafe fn get_unchecked(&self, index: I) -> &Self::Output;
}
pub trait GetUnchecked<I>: CheckIndex<I> {
type Output: ?Sized;
// Required method
unsafe fn get_unchecked(&self, index: I) -> &Self::Output;
}