(&mut self)
| 149 | impl<T: ?Sized> MutCow<'_, T> { |
| 150 | #[must_use] |
| 151 | pub fn borrow_mut(&mut self) -> &mut T { |
| 152 | match self { |
| 153 | Self::Owned(a) => a, |
| 154 | Self::Borrowed(a) => a, |
| 155 | } |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | impl<'a, T: Sync + Send + Copy + 'static> RowBitmapMut<'a, T> { |
no outgoing calls
no test coverage detected