I have an Iterator that iterates over &&Arc<Mutex<Chunk>> and need to convert it to Vec<&Chunk>. Any Idea how I can accomplish that?
The reason behind this issue is that I have a lot of functions that take Vec<&Chunk>. I am upgrading my app and trying to use mutlpile threads and so on so I wrapped them in a Mutex. Lazy me does not want to change all function signatures to accept MutexGuard.
