pub type FontResult<T> = Result<T, &'static str>;
Alias for Result<T, &’static str>.
enum FontResult<T> { Ok(T), Err(&'static str), }
Contains the success value
Contains the error value