pub enum Error {
Usage(String),
Argv(String),
NoMatch,
Deserialize(String),
WithProgramUsage(Box<Error>, String),
Help,
Version(String),
}
Expand description
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.
Implementations
sourceimpl Error
impl Error
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl Error for Error
impl Error for Error
sourcefn custom<T: Display>(msg: T) -> Self
fn custom<T: Display>(msg: T) -> Self
Raised when there is general error when deserializing a type. Read more
sourcefn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a Deserialize
receives a type different from what it was
expecting. Read more
sourcefn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a Deserialize
receives a value of the right type but that
is wrong for some other reason. Read more
sourcefn invalid_length(len: usize, exp: &dyn Expected) -> Self
fn invalid_length(len: usize, exp: &dyn Expected) -> Self
Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
sourcefn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
Raised when a Deserialize
enum type received a variant with an
unrecognized name. Read more
sourcefn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
Raised when a Deserialize
struct type received a field with an
unrecognized name. Read more
sourcefn missing_field(field: &'static str) -> Self
fn missing_field(field: &'static str) -> Self
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
sourcefn duplicate_field(field: &'static str) -> Self
fn duplicate_field(field: &'static str) -> Self
Raised when a Deserialize
struct type received more than one of the
same field. Read more
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more