本文简要介绍rust语言中 core::cell::UnsafeCell.get_mut
的用法。
用法
pub fn get_mut(&mut self) -> &mut T
返回对基础数据的可变引用。
这个调用可变地借用了UnsafeCell
(在编译时),这保证了我们拥有唯一的引用。
例子
use std::cell::UnsafeCell;
let mut c = UnsafeCell::new(5);
*c.get_mut() += 1;
assert_eq!(*c.get_mut(), 6);
相关用法
- Rust UnsafeCell.get用法及代码示例
- Rust UnsafeCell.new用法及代码示例
- Rust UnsafeCell.into_inner用法及代码示例
- Rust UnsafeCell.raw_get用法及代码示例
- 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.get_mut。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。