fn parse_env_var<T: FromStr>(key: &str) -> Option<T>
Parse the provided environment variable, returning Some(...) if it is present, has a value, and was successfully parsed, and None otherwise
Some(...)
None