Trait mentat_db::db::PartitionMapping [] [src]

pub trait PartitionMapping {
    fn allocate_entid<S: ?Sized + Ord + Display>(
        &mut self,
        partition: &S
    ) -> i64
    where
        String: Borrow<S>
;
fn allocate_entids<S: ?Sized + Ord + Display>(
        &mut self,
        partition: &S,
        n: usize
    ) -> Range<i64>
    where
        String: Borrow<S>
;
fn contains_entid(&self, entid: Entid) -> bool; }

Required Methods

Important traits for Range<A>

Implementors