pub type YR_COMPILER_INCLUDE_CALLBACK_FUNC = Option<unsafe extern "C" fn(include_name: *const c_char, calling_rule_filename: *const c_char, calling_rule_namespace: *const c_char, user_data: *mut c_void) -> *const c_char>;

Aliased Type§

enum YR_COMPILER_INCLUDE_CALLBACK_FUNC {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: *const i8, _: *const i8, _: *mut c_void) -> *const i8),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.