(&self, id: Id)
| 6929 | } |
| 6930 | |
| 6931 | pub fn get_element_data(&self, id: Id) -> Option<BoundingBox> { |
| 6932 | self.layout_element_map |
| 6933 | .get(&id.id) |
| 6934 | .map(|item| item.bounding_box) |
| 6935 | } |
| 6936 | |
| 6937 | pub fn get_scroll_container_data(&self, id: Id) -> ScrollContainerData { |
| 6938 | for scd in &self.scroll_container_datas { |
no test coverage detected