Type Alias fontdue::FontResult

source ·
pub type FontResult<T> = Result<T, &'static str>;
Expand description

Alias for Result<T, &’static str>.

Aliased Type§

enum FontResult<T> {
    Ok(T),
    Err(&'static str),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(&'static str)

Contains the error value