从环境变量中解析配置值
作者:Andy Barron
在配置类中排名第904
17KB 313 行
std::env::set_var("PORT", "9001"); // or e.g. dotenv::dotenv() let port: u16 = strict_env::parse("PORT")?; assert_eq!(port, 9001);
~285–740KB ~17K SLoC