Trait read_fonts::traversal::SomeTable
source · pub trait SomeTable<'a> {
// Required methods
fn type_name(&self) -> &str;
fn get_field(&self, idx: usize) -> Option<Field<'a>>;
}
Expand description
A generic table type.
This is intended to be used as a trait object, and is a way of generically representing any table, providing ordered access to that table’s fields.