pub trait IndexableItem {
type ItemId: Hash + PartialEq + Eq + Clone;
// Required method
fn id(&self) -> Self::ItemId;
}
Expand description
The IndexableItem
trait is used to mark items that can be indexed into a
RelationalLinkedChunk
.