pub exec fn pcell_borrow_mut<'a, T>(
cell: &'a PCell<T>,
perm: &'a mut Tracked<PointsTo<T>>,
) -> res : &'a mut TExpand description
requires
cell.id() == perm.id(),ensures*final(res) == *final(perm).value(),final(perm).id() == old(perm).id(),A Verus version of unsafe { &mut *cell.get() } for UnsafeCell<T>.
FIXME: Waiting for official support from Verus.