Get mutable access to the inner value without updating the ID.
(&mut self)
| 133 | |
| 134 | /// Get mutable access to the inner value without updating the ID. |
| 135 | pub fn as_mut_unsync(&mut self) -> &mut T { |
| 136 | &mut self.value |
| 137 | } |
| 138 | |
| 139 | /// Manually update the internal ID without modifying the internals. |
| 140 | pub fn notify(&mut self) { |
nothing calls this directly
no outgoing calls
no test coverage detected