Enum jargon_args::Error [−][src]
Expand description
Error
This Enum currently contains two variants, MissingArgs and Other.
MissingArgs(Key)
This variant is used internally by Jargon to warn when a required argument
(from the res_* functions) does not exist.
Other(String)
This variant is used internally by Jargon when converting other types of errors to itself. STD ERROR TYPES ARE NOT YET IMPLEMENTED IN TRAITS
Variants
MissingArg(Key)MissingArgs(Key)
This variant is used internally by Jargon to warn when a required argument
(from the res_* functions) does not exist.
Tuple Fields of MissingArg
0: KeyOther(String)Other(String)
This variant is used internally by Jargon when converting other types of errors to itself. STD ERROR TYPES ARE NOT YET IMPLEMENTED IN TRAITS
Tuple Fields of Other
0: String