[][src]Struct argh::EarlyExit

pub struct EarlyExit {
    pub output: String,
    pub status: Result<(), ()>,
}

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: String

The 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 Clone for EarlyExit[src]

impl Debug for EarlyExit[src]

impl Eq for EarlyExit[src]

impl From<String> for EarlyExit[src]

impl PartialEq<EarlyExit> for EarlyExit[src]

impl StructuralEq for EarlyExit[src]

impl StructuralPartialEq for EarlyExit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.