A small change to the names of these functions to improve ergonomics.
borrow() -> get() borrow_mut() -> get_mut()
borrow()
get()
borrow_mut()
get_mut()
The intent of these names is to advertise they work like other borrows. In particular, it’s not obvious that you can’t execute another get_mut after you have already done a get_mut, and the type system won’t help you…
get_mut
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.