LCOV - code coverage report
Current view: top level - libs/utils/src - env.rs (source / functions) Coverage Total Hit
Test: 90b23405d17e36048d3bb64e314067f397803f1b.info Lines: 92.9 % 14 13
Test Date: 2024-09-20 13:14:58 Functions: 40.0 % 10 4

            Line data    Source code
       1              : //! Wrapper around `std::env::var` for parsing environment variables.
       2              : 
       3              : use std::{fmt::Display, str::FromStr};
       4              : 
       5      1264613 : pub fn var<V, E>(varname: &str) -> Option<V>
       6      1264613 : where
       7      1264613 :     V: FromStr<Err = E>,
       8      1264613 :     E: Display,
       9      1264613 : {
      10      1264613 :     match std::env::var(varname) {
      11      1263614 :         Ok(s) => Some(
      12      1263614 :             s.parse()
      13      1263614 :                 .map_err(|e| format!("failed to parse env var {varname}: {e:#}"))
      14      1263614 :                 .unwrap(),
      15      1263614 :         ),
      16          999 :         Err(std::env::VarError::NotPresent) => None,
      17              :         Err(std::env::VarError::NotUnicode(_)) => {
      18            0 :             panic!("env var {varname} is not unicode")
      19              :         }
      20              :     }
      21      1264613 : }
        

Generated by: LCOV version 2.1-beta