pub trait IdIndexSource<P> {
type Entry;
// Required method
fn entry_at(&self, pointer: &P) -> Self::Entry;
}
Expand description
Source table for IdIndex
to map pointer of type P
to entry.
pub trait IdIndexSource<P> {
type Entry;
// Required method
fn entry_at(&self, pointer: &P) -> Self::Entry;
}
Source table for IdIndex
to map pointer of type P
to entry.