pub struct Arglist {
pub args: Vec<String>,
}Expand description
Accumulator for command-line arguments; converting it into a Vec<String>
de-duplicates the collected entries.
Fields§
§args: Vec<String>The arguments collected so far, in insertion order.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Arglist
impl RefUnwindSafe for Arglist
impl Send for Arglist
impl Sync for Arglist
impl Unpin for Arglist
impl UnsafeUnpin for Arglist
impl UnwindSafe for Arglist
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