(
id: ObjectId,
data: &mut dyn Iterator<Item = u8>,
)
| 828 | } |
| 829 | |
| 830 | fn read_string_variable( |
| 831 | id: ObjectId, |
| 832 | data: &mut dyn Iterator<Item = u8>, |
| 833 | ) -> Result<Self, ParseError> { |
| 834 | let o = StringVariable { |
| 835 | id, |
| 836 | value: Self::read_string(Self::read_u16(data)?.into(), data)?, |
| 837 | }; |
| 838 | |
| 839 | Ok(Object::StringVariable(o)) |
| 840 | } |
| 841 | |
| 842 | fn read_font_attributes( |
| 843 | id: ObjectId, |
nothing calls this directly
no test coverage detected