1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-03 10:51:09 +00:00

Add get_mut to WasmRefCell

This commit is contained in:
Alex Crichton 2017-12-21 12:28:30 -08:00
parent 44a9555313
commit 97be6d35ce

@ -113,6 +113,12 @@ pub mod __rt {
} }
} }
pub fn get_mut(&mut self) -> &mut T {
unsafe {
&mut *self.value.get()
}
}
pub fn borrow(&self) -> Ref<T> { pub fn borrow(&self) -> Ref<T> {
unsafe { unsafe {
if self.borrow.get() == usize::max_value() { if self.borrow.get() == usize::max_value() {