pub trait IdIndexSourceEntry<K> {
    // Required method
    fn to_key(&self) -> K;
}
Expand description

Source table entry of IdIndex, which is conceptually a (key, value) pair.

Required Methods§

source

fn to_key(&self) -> K

Implementations on Foreign Types§

source§

impl IdIndexSourceEntry<CommitId> for &(CommitId, ChangeId)

source§

impl IdIndexSourceEntry<ChangeId> for &(CommitId, ChangeId)

Implementors§