pub enum ParseMapResult {
Map(BTreeMap<&'static str, String>),
Exit(ExitCode),
}Expand description
The result of parsing commands using jaarg::Opts::parse_map.
Variants§
Auto Trait Implementations§
impl Freeze for ParseMapResult
impl RefUnwindSafe for ParseMapResult
impl Send for ParseMapResult
impl Sync for ParseMapResult
impl Unpin for ParseMapResult
impl UnwindSafe for ParseMapResult
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