| David Tolnay | cb07a84 | 2021-04-16 16:08:52 -0700 | [diff] [blame^] | 1 | #![allow(missing_docs)] |
| 2 | |||||
| David Tolnay | e84849e | 2021-04-16 00:35:01 -0700 | [diff] [blame] | 3 | use core::ffi::c_void; |
| 4 | |||||
| David Tolnay | 75dca2e | 2020-03-25 20:17:52 -0700 | [diff] [blame] | 5 | #[repr(C)] |
| 6 | pub struct FatFunction { | ||||
| David Tolnay | e84849e | 2021-04-16 00:35:01 -0700 | [diff] [blame] | 7 | pub trampoline: *const c_void, |
| 8 | pub ptr: *const c_void, | ||||
| David Tolnay | 75dca2e | 2020-03-25 20:17:52 -0700 | [diff] [blame] | 9 | } |