本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。