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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".