| 1830 | OomOrDynErrorRef::Oom(oom) => f.debug_tuple("Oom").field(oom).finish(), |
| 1831 | OomOrDynErrorRef::DynError(error) => { |
| 1832 | struct DebugError<'a>(SharedPtr<'a, DynError>); |
| 1833 | impl fmt::Debug for DebugError<'_> { |
| 1834 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 1835 | // Safety: invariant of `OomOrDynError` that the pointer |