(&self, f: &mut core::fmt::Formatter<'_>)
| 395 | #[cfg(feature = "debug")] |
| 396 | impl core::fmt::Debug for HostFunction { |
| 397 | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 398 | f.debug_struct("HostFunction").field("ty", &self.ty).field("func", &"...").finish() |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | /// Resumable execution for an untyped function call. |