pub type pbuf_free_custom_fn = Option<unsafe extern "C" fn(p: *mut pbuf)>;
Prototype for a function to free a custom pbuf
enum pbuf_free_custom_fn { None, Some(unsafe extern "C" fn(_: *mut pbuf)), }
No value.
Some value of type T.
T