let boxed_ref: RefMut<'_, Box<usize>> = cb.borrow_mut(); assert_eq!(**boxed_ref, 5); // Notice the double deref to get the actual value. // By using `map` we ...
確定! 回上一頁