here for the C API.
| 32 | #[derive(Copy, Clone, Debug)] |
| 33 | #[repr(C)] // here for the C API. |
| 34 | pub struct Func { |
| 35 | instance: Instance, |
| 36 | index: ExportIndex, |
| 37 | } |
| 38 | |
| 39 | // Double-check that the C representation in `component/instance.h` matches our |
| 40 | // in-Rust representation here in terms of size/alignment/etc. |
no outgoing calls
no test coverage detected