(err: ParseIntError)
| 40 | // needs to be converted into a `DoubleError`. |
| 41 | impl From<ParseIntError> for DoubleError { |
| 42 | fn from(err: ParseIntError) -> DoubleError { |
| 43 | DoubleError::Parse(err) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | fn double_first(vec: Vec<&str>) -> Result<i32> { |
nothing calls this directly
no outgoing calls
no test coverage detected