1 #![allow(missing_docs)] 2 3 use core::ffi::c_void; 4 5 #[repr(C)] 6 pub struct FatFunction { 7 pub trampoline: *const c_void, 8 pub ptr: *const c_void, 9 } 10