Trait IndexableItem

Source
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.

Required Associated Types§

Required Methods§

Source

fn id(&self) -> Self::ItemId

Return the identifier of the item.

Implementors§