pub type ULClipboardReadPlainTextCallback = Option<unsafe extern "C" fn(result: ULString)>;
Expand description

The callback invoked when the library wants to read from the system’s clipboard.

You should store the result (if any) in ‘result’.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.