pub type BackCallback = Option<unsafe extern "C" fn(back_context: *mut c_void)>;
Back callback type
Will be called from the GUI thread
pub enum BackCallback { None, Some(unsafe extern "C" fn(*mut c_void)), }
No value.
Some value of type T.
T