pub trait IndexedData: Copy { // Required methods fn default() -> Self; fn index(&self) -> usize; }
A data to which an index is associated.
Creates a new default instance of Self.
Self
Gets the index associated to self.
self