pub type FontResult<T> = Result<T, FontError>;
The type we used to represent a result of any font operations
enum FontResult<T> { Ok(T), Err(FontError), }
Contains the success value
Contains the error value