pub type ULFontLoaderGetFallbackFont = Option<unsafe extern "C" fn() -> ULString>;
Expand description

Fallback font family name. Will be used if all other fonts fail to load.

@note This font should be guaranteed to exist (eg, ULFontLoader::load should not fail when when passed this font family name).

@note The returned ULString instance will be consumed (ulDestroyString will be called on it).

Aliased Type§

enum ULFontLoaderGetFallbackFont {
    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.