本文簡要介紹rust語言中 alloc::rc::Rc.as_ptr
的用法。
用法
pub fn as_ptr(this: &Self) -> *const T
提供指向數據的原始指針。
計數不會受到任何影響,並且不會消耗 Rc
。隻要 Rc
中有強計數,指針就有效。
例子
use std::rc::Rc;
let x = Rc::new("hello".to_owned());
let y = Rc::clone(&x);
let x_ptr = Rc::as_ptr(&x);
assert_eq!(x_ptr, Rc::as_ptr(&y));
assert_eq!(unsafe { &*x_ptr }, "hello");
相關用法
- Rust Rc.assume_init用法及代碼示例
- Rust Rc.increment_strong_count用法及代碼示例
- Rust Rc.make_mut用法及代碼示例
- Rust Rc.new_zeroed用法及代碼示例
- Rust Rc.new_cyclic用法及代碼示例
- Rust Rc.new_zeroed_slice用法及代碼示例
- Rust Rc.ptr_eq用法及代碼示例
- Rust Rc.weak_count用法及代碼示例
- Rust Rc.downgrade用法及代碼示例
- Rust Rc.try_unwrap用法及代碼示例
- Rust Rc.try_new_uninit用法及代碼示例
- Rust Rc.new_uninit用法及代碼示例
- Rust Rc.into_raw用法及代碼示例
- Rust Rc.downcast用法及代碼示例
- Rust Rc.try_new用法及代碼示例
- Rust Rc.new_uninit_slice用法及代碼示例
- Rust Rc.get_mut_unchecked用法及代碼示例
- Rust Rc.from_raw用法及代碼示例
- Rust Rc.new用法及代碼示例
- Rust Rc.get_mut用法及代碼示例
- Rust Rc.decrement_strong_count用法及代碼示例
- Rust Rc.strong_count用法及代碼示例
- Rust Rc.try_new_zeroed用法及代碼示例
- Rust Result.unwrap_or_else用法及代碼示例
- Rust RefCell.try_borrow_unguarded用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::rc::Rc.as_ptr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。