| 160 | /// SAFETY: This must not be used for any types where it would be UB for them to be Send |
| 161 | #[derive(Copy, Clone)] |
| 162 | struct SendWrapper<T>(T); |
| 163 | unsafe impl<T> Send for SendWrapper<T> {} |
| 164 | |
| 165 | /// A `JITModule` implements `Module` and emits code and data into memory where it can be |
no outgoing calls
no test coverage detected