pub type ULFileSystemFileExistsCallback = Option<unsafe extern "C" fn(path: ULString) -> bool>;
Expand description

The callback invoked when the FileSystem wants to check if a file path exists, return true if it exists.

Aliased Type§

enum ULFileSystemFileExistsCallback {
    None,
    Some(unsafe extern "C" fn(_: *mut C_String) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.