pub trait BuildTableShared<D, R, T> where
    D: Hash + Eq + Debug,
    R: Reference<D>,
    T: Table<D, R>, 
{ type TableSharedType: TableShared<D, R, T>; fn build_tableshared(&self) -> Self::TableSharedType; }

Required Associated Types

Required Methods

Implementors