#[unsafe(no_mangle)]pub unsafe extern "C" fn copperlace_ruleset_render_structured_json_with_context_and_options(
handle: *const CopperlaceRuleSet,
rule: *const c_char,
context_keys: *const *const c_char,
context_values: *const *const c_char,
context_len: usize,
format_json: bool,
max_recursion_depth: usize,
out_json: *mut *mut c_char,
out_error: *mut *mut c_char,
) -> c_intExpand description
Renders a named structured rule from a ruleset handle with initial context and render options.
ยงSafety
handle must be a live ruleset handle returned by Copperlace. rule must
point to a valid NUL-terminated UTF-8 string. When context_len is nonzero,
context_keys and context_values must each point to arrays with at least
context_len entries, and every entry must point to a valid
NUL-terminated UTF-8 string. out_json must be a valid writable pointer.
out_error must be valid for writing when non-null. Any returned output or
error string must be released with copperlace_string_free.