(&'a self, tag: u32)
| 32 | } |
| 33 | |
| 34 | fn has_table<'a>(&'a self, tag: u32) -> bool { |
| 35 | let table_data = self.0.table_data(ttf_parser::Tag::from_bytes(&tag.to_be_bytes())); |
| 36 | table_data.is_some() |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /// |
nothing calls this directly
no test coverage detected