(&mut self)
| 172 | |
| 173 | impl<T> core::ops::DerefMut for Notify<T> { |
| 174 | fn deref_mut(&mut self) -> &mut Self::Target { |
| 175 | self.id = increment_counter(); |
| 176 | |
| 177 | &mut self.value |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | impl<T: Copy> Copy for Notify<T> {} |
nothing calls this directly
no test coverage detected