pub type claim_t = Option<unsafe extern "C" fn(claim: Claim, ctx: *mut c_void)>;
enum claim_t { None, Some(unsafe extern "C" fn(_: Claim, _: *mut c_void)), }
No value.
Some value of type T.
T