usecrate::{ParegRef,Result};/// Macro for types that can parse command line arguments.
pubtraitFromArgs<'a, S: AsRef<str> = String>: Sized {/// Parse the given command line arguments into this type.
fnparse_args(args:&mutParegRef<'a, S>)->Result<Self>;}