1 2 3 4 5 6 7 8 9 10 11 12 13
//! [`Arguments`] and associated types. mod arguments; pub use arguments::Arguments; mod expect_arg; pub(crate) use expect_arg::ExpectArg; mod iter; pub use iter::{Named, Positional}; mod scanner; pub(crate) use scanner::{ArgumentScanner, FromArgs};