use structopt::StructOpt; #[derive(Debug, StructOpt)] #[structopt( name = "temp", about = "Simple personal CLI to gather machine temperatures." )] pub enum Arguments { #[structopt(about = "Temperature in Celsius, ONLY AMD")] CPU, #[structopt(about = "Temperature in Celsius, ONLY NVIDIA")] GPU, }