Struct read_fonts::traversal::ResolvedOffset
source · pub struct ResolvedOffset<'a> {
pub offset: OffsetType,
pub target: Result<Box<dyn SomeTable<'a> + 'a>, ReadError>,
}Expand description
An offset, as well as the table it references.
Fields§
§offset: OffsetTypeThe raw offset
target: Result<Box<dyn SomeTable<'a> + 'a>, ReadError>The parsed table pointed to by this offset, or an error if parsing fails.