Expand description
Information to display to the user about why a FromArgs construction exited early.
This can occur due to either failed parsing or a flag like --help.
Fields
output: StringThe output to display to the user of the commandline tool.
status: Result<(), ()>Status of argument parsing.
Ok if the command was parsed successfully and the early exit is due
to a flag like --help causing early exit with output.
Err if the arguments were not successfully parsed.
Trait Implementations
impl Eq for EarlyExit
impl StructuralEq for EarlyExit
impl StructuralPartialEq for EarlyExit
Auto Trait Implementations
impl RefUnwindSafe for EarlyExit
impl Send for EarlyExit
impl Sync for EarlyExit
impl Unpin for EarlyExit
impl UnwindSafe for EarlyExit
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more