n-observer-cffi-impl 0.1.0

CFFI logic without the C declarations for the n-observer rust library.
Documentation
1
2
3
4
5
6
7
8
use std::ffi::c_void;

#[repr(C)]
#[derive(Debug, Clone)]
pub struct CffiInnerObserverReceiver {
    pub update_fut: extern "C" fn(*const c_void, *const c_void) -> *const c_void,
    pub hold_strong_publisher_ref_fut: extern "C" fn(*const c_void, *const c_void) -> *const c_void,
}