本文简要介绍rust语言中 core::cell::UnsafeCell.raw_get
的用法。
用法
pub const fn raw_get(this: *const Self) -> *mut T
获取指向包装值的可变指针。与 get
的区别在于该函数接受一个原始指针,这对于避免创建临时引用很有用。
结果可以转换为任何类型的指针。确保在转换为 &mut T
时访问是唯一的(没有活动引用,无论是否可变),并确保在转换为 &T
时没有发生突变或可变别名。
例子
UnsafeCell
的逐步初始化需要 raw_get
,因为调用 get
需要创建对未初始化数据的引用:
use std::cell::UnsafeCell;
use std::mem::MaybeUninit;
let m = MaybeUninit::<UnsafeCell<i32>>::uninit();
unsafe { UnsafeCell::raw_get(m.as_ptr()).write(5); }
let uc = unsafe { m.assume_init() };
assert_eq!(uc.into_inner(), 5);
相关用法
- Rust UnsafeCell.new用法及代码示例
- Rust UnsafeCell.into_inner用法及代码示例
- Rust UnsafeCell.get用法及代码示例
- Rust UnsafeCell.get_mut用法及代码示例
- Rust UnsafeCell用法及代码示例
- Rust UnixStream用法及代码示例
- Rust UnixStream.take_error用法及代码示例
- Rust UnixListener.accept用法及代码示例
- Rust UnixListener.bind用法及代码示例
- Rust UnixDatagram.peek_from用法及代码示例
- Rust UnixDatagram.recv_from用法及代码示例
- Rust UnixListener.incoming用法及代码示例
- Rust UnixStream.read_timeout用法及代码示例
- Rust UnixDatagram.take_error用法及代码示例
- Rust Union用法及代码示例
- Rust UnixDatagram.peek用法及代码示例
- Rust UnixDatagram.send_to_addr用法及代码示例
- Rust UnixDatagram.read_timeout用法及代码示例
- Rust UnixDatagram.set_nonblocking用法及代码示例
- Rust UnixDatagram.connect用法及代码示例
- Rust UnixDatagram.set_read_timeout用法及代码示例
- Rust UnixStream.peer_addr用法及代码示例
- Rust UnixDatagram.send_to用法及代码示例
- Rust UnixStream.send_vectored_with_ancillary用法及代码示例
- Rust UnixStream.peek用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::cell::UnsafeCell.raw_get。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。