(&self, f: &mut fmt::Formatter)
| 118 | |
| 119 | impl<'a, T> fmt::Debug for OpaquePtr<'a, T> { |
| 120 | fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { |
| 121 | write!(f, "OpaquePtr<{}>({})", std::any::type_name::<T>(), self.ptr) |
| 122 | } |
| 123 | } |
nothing calls this directly
no outgoing calls
no test coverage detected