Type Alias FontResult
pub type FontResult<T> = Result<T, <FontDataInternal as FontData>::ErrorType>;Expand description
The type we used to represent a result of any font operations
Aliased Type§
pub enum FontResult<T> {
Ok(T),
Err(FontError),
}