(&self, f: &mut core::fmt::Formatter<'_>)
| 77 | |
| 78 | impl core::fmt::Debug for Engine { |
| 79 | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 80 | f.debug_tuple("Engine") |
| 81 | .field(&Arc::as_ptr(&self.inner)) |
| 82 | .finish() |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | impl Default for Engine { |