當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust RefCell.borrow_mut用法及代碼示例


本文簡要介紹rust語言中 core::cell::RefCell.borrow_mut 的用法。

用法

pub fn borrow_mut(&self) -> RefMut<'_, T>

可變地借用包裝的值。

借用一直持續到返回的 RefMut 或從它派生的所有 RefMut 退出範圍。當此借入處於活動狀態時,無法借入該值。

Panics

如果當前借用該值,則會出現Panics。對於非Panics變體,請使用 try_borrow_mut

例子

use std::cell::RefCell;

let c = RefCell::new("hello".to_owned());

*c.borrow_mut() = "bonjour".to_owned();

assert_eq!(&*c.borrow(), "bonjour");

Panics的一個例子:

use std::cell::RefCell;

let c = RefCell::new(5);
let m = c.borrow();

let b = c.borrow_mut(); // this causes a panic

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 core::cell::RefCell.borrow_mut。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。