[][src]Enum docopt::Error

pub enum Error {
    Usage(String),
    Argv(String),
    NoMatch,
    Deserialize(String),
    WithProgramUsage(Box<Error>, String),
    Help,
    Version(String),
}

Represents the different types of Docopt errors.

This error type has a lot of variants. In the common case, you probably don't care why Docopt has failed, and would rather just quit the program and show an error message instead. The exit method defined on the Error type will do just that. It will also set the exit code appropriately (no error for --help or --version, but an error code for bad usage, bad argv, no match or bad decode).

Example

Generally, you want to parse the usage string, try to match the argv and then quit the program if there was an error reported at any point in that process. This can be achieved like so:

use docopt::Docopt;

const USAGE: &'static str = "
Usage: ...
";

let args = Docopt::new(USAGE)
                  .and_then(|d| d.parse())
                  .unwrap_or_else(|e| e.exit());

Variants

Usage(String)

Parsing the usage string failed.

This error can only be triggered by the programmer, i.e., the writer of the Docopt usage string. This error is usually indicative of a bug in your program.

Argv(String)

Parsing the argv specified failed.

The payload is a string describing why the arguments provided could not be parsed.

This is distinct from NoMatch because it will catch errors like using flags that aren't defined in the usage string.

NoMatch

The given argv parsed successfully, but it did not match any example usage of the program.

Regrettably, there is no descriptive message describing why the given argv didn't match any of the usage strings.

Deserialize(String)

This indicates a problem deserializing a successful argv match into a deserializable value.

WithProgramUsage(Box<Error>, String)

Parsing failed, and the program usage should be printed next to the failure message. Typically this wraps Argv and NoMatch errors.

Help

Decoding or parsing failed because the command line specified that the help message should be printed.

Version(String)

Decoding or parsing failed because the command line specified that the version should be printed

The version is included as a payload to this variant.

Methods

impl Error[src]

pub fn fatal(&self) -> bool[src]

Return whether this was a fatal error or not.

Non-fatal errors include requests to print the help or version information of a program, while fatal errors include those such as failing to decode or parse.

pub fn exit(&self) -> ![src]

Print this error and immediately exit the program.

If the error is non-fatal (e.g., Help or Version), then the error is printed to stdout and the exit status will be 0. Otherwise, when the error is fatal, the error is printed to stderr and the exit status will be 1.

Trait Implementations

impl Display for Error[src]

impl Debug for Error[src]

impl Error for Error[src]

default fn description(&self) -> &str
1.0.0
[src]

This method is soft-deprecated. Read more

default fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

default fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

impl Error for Error[src]

default fn invalid_type(unexp: Unexpected, exp: &dyn Expected) -> Self[src]

Raised when a Deserialize receives a type different from what it was expecting. Read more

default fn invalid_value(unexp: Unexpected, exp: &dyn Expected) -> Self[src]

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more

default fn invalid_length(len: usize, exp: &dyn Expected) -> Self[src]

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more

default fn unknown_variant(
    variant: &str,
    expected: &'static [&'static str]
) -> Self
[src]

Raised when a Deserialize enum type received a variant with an unrecognized name. Read more

default fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self[src]

Raised when a Deserialize struct type received a field with an unrecognized name. Read more

default fn missing_field(field: &'static str) -> Self[src]

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more

default fn duplicate_field(field: &'static str) -> Self[src]

Raised when a Deserialize struct type received more than one of the same field. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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