pub type DecodeFunction = Option<unsafe extern "C" fn(string: *const u8, length: u32, code_point: *mut i32) -> u32>;
enum DecodeFunction { None, Some(unsafe extern "C" fn(_: *const u8, _: u32, _: *mut i32) -> u32), }
No value.
Some value of type T.
T