pub struct Cla<T> {
pub path: Box<Path>,
pub args: T,
}Expand description
Wrapper around command line arguments.
See the parse_cla function for more details.
Fields§
§path: Box<Path>Path to the executable.
args: TRest of the args.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Cla<T>where
T: Freeze,
impl<T> RefUnwindSafe for Cla<T>where
T: RefUnwindSafe,
impl<T> Send for Cla<T>where
T: Send,
impl<T> Sync for Cla<T>where
T: Sync,
impl<T> Unpin for Cla<T>where
T: Unpin,
impl<T> UnwindSafe for Cla<T>where
T: UnwindSafe,
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