Creates a new mutex.
impl<T> Mutex<T> { fn new(data: T) -> Mutex<T> }
The data to be protected by the mutex.