(
value: Option<String>,
field: &str,
)
| 821 | } |
| 822 | |
| 823 | fn parse_optional_f32( |
| 824 | value: Option<String>, |
| 825 | field: &str, |
| 826 | ) -> tracedecay::errors::Result<Option<Option<f32>>> { |
| 827 | parse_optional_number(value, field, str::parse::<f32>) |
| 828 | } |
| 829 | |
| 830 | fn parse_optional_number<T, E>( |
| 831 | value: Option<String>, |
no test coverage detected