pub type StringCallback = Option<unsafe extern "C" fn(ptr: *const c_char, len: usize, target: *mut c_void)>;
pub enum StringCallback { None, Some(unsafe extern "C" fn(*const i8, usize, *mut c_void)), }
No value.
Some value of type T.
T