If you do not need thread-safety, and just need shared ownership, consider the Rc<T> type. It is the same as Arc<T> , but does not use atomics, ...
確定! 回上一頁