| 11 | |
| 12 | #[repr(C)] |
| 13 | pub struct CMessage { |
| 14 | pub ptr: *mut libc::c_void, |
| 15 | pub clone_func: extern "C" fn(*mut libc::c_void) -> *mut libc::c_void, |
| 16 | pub release_func: extern "C" fn(*mut libc::c_void), |
| 17 | } |
| 18 | |
| 19 | pub struct Message(Option<CMessage>); |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected