pub trait IndexedData: Copy {
// Required methods
fn default() -> Self;
fn index(&self) -> usize;
}
Expand description
A data to which an index is associated.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.