pub struct Args { /* private fields */ }
Expand description
Arguments iterator.
This provides an additional utility layer on top of std::env::Args
.
It does not aim to be a fully feature argument parser,
clap
is great for this, at the cost of a much
heavier crate.
This struct is meant to provide an iterator-like interface layering on parsing and error handling.
The two most common functions are req
and opt
, which will parse the current argument
position and advance to the next position.
Implementations§
Source§impl Args
impl Args
Sourcepub fn req<T>(&mut self, desc: impl AsRef<str>) -> Result<T>
pub fn req<T>(&mut self, desc: impl AsRef<str>) -> Result<T>
Parse current argument, requiring it exist, and advance the argument position.
T
should implement FromStr
with FromStr::Err
implementing IntoDiagnostic
.
desc
describes the argument in case of failure.
§Example
let mut args = Args::from(vec!["fst.txt", "24h"]);
let fst = args.req::<PathBuf>("filepath").unwrap();
// humantime::Duration can parse nicely
let dur = args.req::<Duration>("delay length").unwrap();
let err = args.req::<String>("output").unwrap_err().to_string();
assert_eq!(&err, "expecting an argument at position 3");
Sourcepub fn opt<T>(&mut self, desc: impl AsRef<str>) -> Result<Option<T>>
pub fn opt<T>(&mut self, desc: impl AsRef<str>) -> Result<Option<T>>
Parse current argument, returning None
if it does not exist.
If it does exist (and parses), advances the argument position.
T
should implement FromStr
with FromStr::Err
implementing IntoDiagnostic
.
desc
describes the argument in case of failure.
§Example
let mut args = Args::from(vec!["fst.txt"]);
let fst = args.opt::<String>("filepath").unwrap();
assert_eq!(fst, Some("fst.txt".to_string()));
let dur = args.opt::<Duration>("delay").unwrap();
assert!(dur.is_none());
// parsing error
let mut args = Args::from(vec!["text"]);
let err = args.opt::<f64>("a number").unwrap_err();
assert_eq!(&err.to_string(), "failed to parse `text` as f64");
Sourcepub fn has<P>(&mut self, pred: P) -> bool
pub fn has<P>(&mut self, pred: P) -> bool
Test if there is an argument satifying the predicate.
This tests from the current argument position, supplying the argument text to the predicate closure.
If the argument satisfies the predicate, true
is returned and that argument is
excluded from future queries (including req
and opt
).
This is useful to test for flags.
§Example
let mut args = Args::from(vec!["fst.txt", "-c", "24h"]);
let cut = args.has(|x| x == "-c" || x == "--cut");
assert!(cut);
// skips '-c' argument when advancing
assert_eq!(&args.req::<String>("").unwrap(), "fst.txt");
assert_eq!(&args.req::<String>("").unwrap(), "24h");
Sourcepub fn finish(&mut self) -> Result<()>
pub fn finish(&mut self) -> Result<()>
Assert that no more arguments should be present.
§Example
let mut args = Args::from(vec!["fst.txt", "-c", "24h"]);
args.req::<String>("").unwrap();
let err = args.finish().unwrap_err().to_string();
assert_eq!(&err, "unconsumed arguments provided");
Sourcepub fn peek<T>(&mut self) -> Result<Option<T>>
pub fn peek<T>(&mut self) -> Result<Option<T>>
Parse the current argument without advancing the argument position.
T
should implement FromStr
with FromStr::Err
implementing IntoDiagnostic
.
§Example
let mut args = Args::from(vec!["24h"]);
let d = args.peek::<Duration>().unwrap().unwrap();
assert_eq!(d, Duration::from_str("24h").unwrap());
assert!(args.finish().is_err()); // position not advanced
Sourcepub fn peek_str(&mut self) -> Option<&str>
pub fn peek_str(&mut self) -> Option<&str>
Retrieve the current argument as a string without advancing the argument position.
§Example
let mut args = Args::from(vec!["fst.txt", "24h"]);
assert_eq!(args.peek_str(), Some("fst.txt"));
assert_eq!(&args.req::<String>("filepath").unwrap(), "fst.txt");
assert_eq!(args.peek_str(), Some("24h"));
Sourcepub fn move_back(&mut self)
pub fn move_back(&mut self)
Retreat the argument position back one.
Skips over excluded arguments.
§Example
let mut args = Args::from(vec!["fst.txt", "-c", "24h"]);
args.has(|x| x == "-c"); // exclude -c flag
args.req::<String>("").ok();
args.req::<String>("").ok(); // at end now
args.move_back();
assert_eq!(args.peek_str(), Some("24h"));
args.move_back();
// skips the excluded
assert_eq!(args.peek_str(), Some("fst.txt"));
Sourcepub fn move_front(&mut self)
pub fn move_front(&mut self)
Move to the front of the arguments.
Skips over excluded arguments.
§Example
let mut args = Args::from(vec!["-c", "fst.txt", "24h"]);
args.has(|x| x == "-c"); // exclude -c flag
args.req::<String>("").ok();
args.req::<String>("").ok(); // at end now
args.move_front();
assert_eq!(args.peek_str(), Some("fst.txt"));
Trait Implementations§
Source§impl IntoIterator for Args
impl IntoIterator for Args
Consume the remaining arguments as an iterator over the raw strings.
Note that this starts from the argument position and skips any excluded arguments.
§Example
let mut args = Args::from(vec!["fst.txt", "-c", "24h", "output"]);
args.req::<String>("").unwrap();
args.has(|x| x== "-c");
let rem = args.into_iter().collect::<Vec<_>>();
assert_eq!(&rem, &[
"24h".to_string(),
"output".to_string(),
]);
Auto Trait Implementations§
impl Freeze for Args
impl !RefUnwindSafe for Args
impl !Send for Args
impl !Sync for Args
impl Unpin for Args
impl !UnwindSafe for Args
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<D> OwoColorize for D
impl<D> OwoColorize for D
Source§fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
Source§fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
Source§fn black(&self) -> FgColorDisplay<'_, Black, Self>
fn black(&self) -> FgColorDisplay<'_, Black, Self>
Source§fn on_black(&self) -> BgColorDisplay<'_, Black, Self>
fn on_black(&self) -> BgColorDisplay<'_, Black, Self>
Source§fn red(&self) -> FgColorDisplay<'_, Red, Self>
fn red(&self) -> FgColorDisplay<'_, Red, Self>
Source§fn on_red(&self) -> BgColorDisplay<'_, Red, Self>
fn on_red(&self) -> BgColorDisplay<'_, Red, Self>
Source§fn green(&self) -> FgColorDisplay<'_, Green, Self>
fn green(&self) -> FgColorDisplay<'_, Green, Self>
Source§fn on_green(&self) -> BgColorDisplay<'_, Green, Self>
fn on_green(&self) -> BgColorDisplay<'_, Green, Self>
Source§fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>
fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>
Source§fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>
fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>
Source§fn blue(&self) -> FgColorDisplay<'_, Blue, Self>
fn blue(&self) -> FgColorDisplay<'_, Blue, Self>
Source§fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>
fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>
Source§fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>
fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>
Source§fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
Source§fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>
fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>
Source§fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>
Source§fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>
fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>
Source§fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>
fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>
Source§fn white(&self) -> FgColorDisplay<'_, White, Self>
fn white(&self) -> FgColorDisplay<'_, White, Self>
Source§fn on_white(&self) -> BgColorDisplay<'_, White, Self>
fn on_white(&self) -> BgColorDisplay<'_, White, Self>
Source§fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
Source§fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
Source§fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
Source§fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
Source§fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
Source§fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
Source§fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
Source§fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
Source§fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
Source§fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
Source§fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
Source§fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
Source§fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Source§fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Source§fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Source§fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Source§fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
Source§fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
Source§fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
Source§fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
Source§fn bold(&self) -> BoldDisplay<'_, Self>
fn bold(&self) -> BoldDisplay<'_, Self>
Source§fn dimmed(&self) -> DimDisplay<'_, Self>
fn dimmed(&self) -> DimDisplay<'_, Self>
Source§fn italic(&self) -> ItalicDisplay<'_, Self>
fn italic(&self) -> ItalicDisplay<'_, Self>
Source§fn underline(&self) -> UnderlineDisplay<'_, Self>
fn underline(&self) -> UnderlineDisplay<'_, Self>
Source§fn blink(&self) -> BlinkDisplay<'_, Self>
fn blink(&self) -> BlinkDisplay<'_, Self>
Source§fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
Source§fn reversed(&self) -> ReversedDisplay<'_, Self>
fn reversed(&self) -> ReversedDisplay<'_, Self>
Source§fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
Source§fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::fg
or
a color-specific method, such as OwoColorize::green
, Read moreSource§fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
OwoColorize::bg
or
a color-specific method, such as OwoColorize::on_yellow
, Read more