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