pub unsafe extern "C" fn aws_json_get_array_element(
array: *const aws_json_value,
index: usize
) -> *mut aws_json_value
Expand description
Returns the aws_json_value at the given index in the array aws_json_value. @param array The array aws_json_value. @param index The index of the aws_json_value you want to access. @return A pointer to the aws_json_value at the given index in the array, otherwise NULL.