pub struct ArgMatches {
pub values: HashMap<String, String>,
pub flags: HashMap<String, bool>,
pub positionals: Vec<String>,
}
Fields§
§values: HashMap<String, String>
§flags: HashMap<String, bool>
§positionals: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgMatches
impl RefUnwindSafe for ArgMatches
impl Send for ArgMatches
impl Sync for ArgMatches
impl Unpin for ArgMatches
impl UnwindSafe for ArgMatches
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
Mutably borrows from an owned value. Read more