本文简要介绍rust语言中 alloc::sync::Weak.upgrade
的用法。
用法
pub fn upgrade(&self) -> Option<Arc<T>>
尝试将 Weak
指针升级到 Arc
,如果成功则延迟删除内部值。
如果内部值已被删除,则返回 None
。
例子
use std::sync::Arc;
let five = Arc::new(5);
let weak_five = Arc::downgrade(&five);
let strong_five: Option<Arc<_>> = weak_five.upgrade();
assert!(strong_five.is_some());
// Destroy all strong pointers.
drop(strong_five);
drop(five);
assert!(weak_five.upgrade().is_none());
相关用法
- Rust Weak.new用法及代码示例
- Rust Weak.from_raw用法及代码示例
- Rust Weak.into_raw用法及代码示例
- Rust Weak.as_ptr用法及代码示例
- Rust Weak.ptr_eq用法及代码示例
- Rust Wrapping.is_negative用法及代码示例
- Rust Wrapping.from_le用法及代码示例
- Rust Wrapping.reverse_bits用法及代码示例
- Rust Wrapping.to_be用法及代码示例
- Rust Wrapping.next_power_of_two用法及代码示例
- Rust Write.write_all用法及代码示例
- Rust Write.write_str用法及代码示例
- Rust Windows用法及代码示例
- Rust Write用法及代码示例
- Rust Write.write_vectored用法及代码示例
- Rust Wrapping.is_power_of_two用法及代码示例
- Rust Wrapping.abs用法及代码示例
- Rust WriterPanicked用法及代码示例
- Rust Write.by_ref用法及代码示例
- Rust Wrapping.rotate_right用法及代码示例
- Rust Wake用法及代码示例
- Rust Wrapping.leading_zeros用法及代码示例
- Rust Write.flush用法及代码示例
- Rust Wrapping.signum用法及代码示例
- Rust Write.write_all_vectored用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::sync::Weak.upgrade。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。