pub trait ValueIndex<Idx> {
    type Output;

    fn index(&self, index: Idx) -> Self::Output;
}
Expand description

A version of index for returning values instead of references

Required Associated Types§

Required Methods§

Implementors§