I had a mutability problem in #rust so I used Arc<T> Now I have two problems
@94b43983 You don't use Arc for mutability (across threads). You are probably looking for Mutex<T> or even Arc<Mutex<T>>.