| 4 | |
| 5 | #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)] |
| 6 | pub struct BrowserVersion(pub u16, pub u16); |
| 7 | |
| 8 | impl BrowserVersion { |
| 9 | pub fn from_string(version: &str) -> Result<Self, ParseIntError> { |
no outgoing calls
no test coverage detected