#[derive(Clone)] pub struct HashMap { hash_builder: S, table: RawTable, } #[derive(Clone)] pub struct RawTable { size: usize, val: V, } fn main() {}