env-type 0.4.1

env-type is a library to define environment variables as types.
Documentation
1
2
3
4
5
6
7
8
use env_type::types::*;
use std::str::FromStr;

fn main() {
    let env = EnvType::from_str("d").unwrap();

    println!("{:?}", env);
}