1 2 3 4 5 6 7
pub trait PersistableIndex { type PersistedIndex; fn get_persisted_index(&self) -> Self::PersistedIndex; fn from_persisted(persisted: Self::PersistedIndex) -> Self; }