#[no_mangle]
pub unsafe extern "C" fn glean_process_ping_upload_response(
    task: *mut FfiPingUploadTask,
    status: u32
)
Expand description

Process and free a FfiPingUploadTask.

We need to pass the whole task instead of only the document id, so that we can free the strings properly on Drop.

After return the task should not be used further by the caller.

Safety

A valid and non-null upload task object is required for this function.