pub type TidyPutByteFunc = Option<unsafe extern "C" fn(sinkData: *mut c_void, bt: byte)>;
Output callback: send a byte to output
pub enum TidyPutByteFunc { None, Some(unsafe extern "C" fn(*mut c_void, u8)), }
No value.
Some value of type T.
T