(&self, f: &mut fmt::Formatter<'_>)
| 135 | |
| 136 | impl<T: Copy + fmt::Debug> fmt::Debug for Lock<T> { |
| 137 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 138 | f.debug_tuple("Lock").field(&self.cell).finish() |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | impl<'gc, T: Copy + 'gc> Gc<'gc, Lock<T>> { |
nothing calls this directly
no test coverage detected