(
&mut self,
config: TextConfig,
)
| 1207 | } |
| 1208 | |
| 1209 | pub fn store_text_element_config( |
| 1210 | &mut self, |
| 1211 | config: TextConfig, |
| 1212 | ) -> usize { |
| 1213 | self.text_element_configs.push(config); |
| 1214 | self.text_element_configs.len() - 1 |
| 1215 | } |
| 1216 | |
| 1217 | fn store_layout_config(&mut self, config: LayoutConfig) -> usize { |
| 1218 | self.layout_configs.push(config); |
no outgoing calls
no test coverage detected