Rust Rc 方法整理
2019-05-12
阅读 4 分钟
6.3kref: alloc::rc::Rc - Rust <!-- toc --> 方法 new pin try_unwrap into_raw from_raw downgrade weak_count strong_count get_mut ptr_eq make_mut downcast <!-- tocstop --> std::rc::Rc 是单线程引用计数指针。'RC' 代表 'Reference Counted'。翻阅 module-level-documentation 查看更多信息Rc 的固有方...