Function nemo_relay_atof_exporter_create
Function nemo_relay_atof_exporter_create
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-pii-redaction -p nemo-relay-ffi -p nemo-relay-types -p nemo-relay-plugin -p nemo-relay-worker-proto -p nemo-relay-worker.
#[unsafe(no_mangle)]pub unsafe extern "C" fn nemo_relay_atof_exporter_create(
output_directory: *const c_char,
mode: *const c_char,
filename: *const c_char,
out: *mut *mut FfiAtofExporter,
) -> NemoRelayStatus
Creates a new filesystem-backed ATOF JSONL exporter.
Parameters
output_directory: Output directory path (nullable for current directory).mode:"append"or"overwrite"(nullable for"append").filename: Output filename (nullable for generated default).out: On success, receives a heap-allocatedFfiAtofExporter.
Safety
All non-null string pointers must be valid C strings. out must be valid.