[][src]Function ejdb_sys::bson_find_fieldpath_value

pub unsafe extern "C" fn bson_find_fieldpath_value(
    fieldpath: *const c_char,
    it: *mut bson_iterator
) -> bson_type

Advance specified iterator 'it' to field value pointing by 'fieldpath'/ Field path string format: 'field1.nestedfield1.nestedfield.2'. If specified field not found BSON_EOO will be returned.

@param fieldpath Path specification to the BSON field. @param it the bson_iterator to use. @return the type of the found object or BSON_EOO if it is not found.