# Safety `self.is_boxed_dyn_error()` must be true.
(&mut self)
| 1641 | /// |
| 1642 | /// `self.is_boxed_dyn_error()` must be true. |
| 1643 | unsafe fn unchecked_dyn_error_mut(&mut self) -> MutPtr<'_, DynError> { |
| 1644 | debug_assert!(self.is_boxed_dyn_error()); |
| 1645 | MutPtr::new(self.inner.cast::<DynError>()) |
| 1646 | } |
| 1647 | |
| 1648 | pub(crate) fn unpack(&self) -> OomOrDynErrorRef<'_> { |
| 1649 | if self.is_oom() { |