pub trait At<const I: usize> {
type Item;
// Required method
fn at(self) -> Self::Item;
}Expand description
A trait for accessing a type at a specific index.
This trait is implemented for Or types and tuples, allowing generic
access to their elements.