#[no_mangle]
pub extern "C" fn pactffi_verifier_set_no_pacts_is_error(
    handle: *mut VerifierHandle,
    is_error: c_uchar
) -> c_int
Expand description

Enables or disables if no pacts are found to verify results in an error.

is_error is a boolean value. Set it to greater than zero to enable an error when no pacts are found to verify, and set it to zero to disable this.

§Safety

This function is safe as long as the handle pointer points to a valid handle.