(&self, f: impl FnOnce(DumpableValue<'_, Self>) -> R)
| 732 | |
| 733 | #[inline(always)] |
| 734 | fn with_dump<R>(&self, f: impl FnOnce(DumpableValue<'_, Self>) -> R) -> Result<R, Self::Error> { |
| 735 | Ok(f(self.borrow_constant().into())) |
| 736 | } |
| 737 | } |
| 738 | |
| 739 | pub trait Write { |
no test coverage detected