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); }