pub type OrtLoggingFunction = Option<unsafe extern "C" fn(param: *mut c_void, severity: OrtLoggingLevel, category: *const c_char, logid: *const c_char, code_location: *const c_char, message: *const c_char)>;

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.