pub trait BuildTable<D, R> where
    D: Hash + Eq + Debug,
    R: Reference<D>, 
{ type Table: Table<D, R>; fn build_table(&self) -> Self::Table; }

Required Associated Types

Required Methods

Implementors