xref: /third_party/rust/crates/cxx/src/function.rs (revision 33d722a9)
1#![allow(missing_docs)]
2
3use core::ffi::c_void;
4
5#[repr(C)]
6pub struct FatFunction {
7    pub trampoline: *const c_void,
8    pub ptr: *const c_void,
9}
10