pub trait IndexedValue: Clone + PartialEq + Eq + Hash + 'static {
    type Index: Idx;
}
Expand description

Links a type to its index.

Should be automatically implemented by the define_index_type macro.

Required Associated Types§

source

type Index: Idx

The index for Self.

Object Safety§

This trait is not object safe.

Implementors§