use crate::map::Map; use crndm::default::*; use crndm::stm::Journal; use crndm::RootObj; type P = BuddyAlloc; pub struct HashmapTx {} impl Map for HashmapTx {} impl RootObj

for HashmapTx { fn init(_: &Journal

) -> Self { todo!() } }