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