(self, mc: &Mutation<'gc>)
| 277 | #[track_caller] |
| 278 | #[inline] |
| 279 | pub fn borrow_mut(self, mc: &Mutation<'gc>) -> RefMut<'gc, T> { |
| 280 | self.unlock(mc).borrow_mut() |
| 281 | } |
| 282 | |
| 283 | #[inline] |
| 284 | pub fn try_borrow_mut(self, mc: &Mutation<'gc>) -> Result<RefMut<'gc, T>, BorrowMutError> { |
no test coverage detected