(self, mc: &Mutation<'gc>)
| 282 | |
| 283 | #[inline] |
| 284 | pub fn try_borrow_mut(self, mc: &Mutation<'gc>) -> Result<RefMut<'gc, T>, BorrowMutError> { |
| 285 | self.unlock(mc).try_borrow_mut() |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | // We can't have `T: ?Sized` here because rustc is dumb and doesn't |