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

Required Methods

Implementors