pub trait IndexList<T> {
    fn get_indexes(&self) -> Box<dyn Iterator<Item = &dyn Index<T>> + '_>;
}

Required Methods

Implementors