Type Alias BSONVISITOR

Source
pub type BSONVISITOR = Option<unsafe extern "C" fn(ipath: *const c_char, ipathlen: c_int, key: *const c_char, keylen: c_int, it: *const bson_iterator, after: bool, op: *mut c_void) -> bson_visitor_cmd_t>;

Aliased Type§

enum BSONVISITOR {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: i32, _: *const i8, _: i32, _: *const bson_iterator, _: bool, _: *mut c_void) -> u32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8, _: i32, _: *const i8, _: i32, _: *const bson_iterator, _: bool, _: *mut c_void) -> u32)

Some value of type T.