(line: &str)
| 2165 | } |
| 2166 | |
| 2167 | fn parse_display_info_app_size(line: &str) -> Option<(f64, f64)> { |
| 2168 | let (_, value) = line.rsplit_once(", app ")?; |
| 2169 | parse_size_prefix(value) |
| 2170 | } |
| 2171 | |
| 2172 | fn parse_display_info_rotation(line: &str) -> Option<u16> { |
| 2173 | let (_, value) = line.rsplit_once(", rotation ")?; |
no test coverage detected