struargs 0.4.0

A macro that converts a structure into a Command parameter list
Documentation
1
2
3
4
5
6
7
pub use struargs_derive::Args;

pub trait Args {
    fn args(&self) -> Vec<String>;

    fn env_args(&self) -> std::collections::HashMap<String, String>;
}