pub trait Args<T> {
// Required methods
fn has_help(&self) -> bool;
fn all(&self) -> Vec<T>;
}Expand description
Abstraction over command-line argument collections.
pub trait Args<T> {
// Required methods
fn has_help(&self) -> bool;
fn all(&self) -> Vec<T>;
}Abstraction over command-line argument collections.