pub type ULLoggerLogMessageCallback = Option<unsafe extern "C" fn(log_level: ULLogLevel, message: ULString)>;
Expand description

The callback invoked when the library wants to print a message to the log.

Aliased Type§

enum ULLoggerLogMessageCallback {
    None,
    Some(unsafe extern "C" fn(_: u32, _: *mut C_String)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: u32, _: *mut C_String))

Some value of type T.