(&self, f: &mut fmt::Formatter<'_>)
| 188 | |
| 189 | impl fmt::Debug for LockedPlaceholder { |
| 190 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 191 | f.write_str(self.0) |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | impl<R: RawMutex, G: GetThreadId, T: ?Sized + fmt::Debug> fmt::Debug for ThreadMutex<R, G, T> { |
nothing calls this directly
no test coverage detected