A macro which makes errors easy to write
Minimum type is like this:
extern crate quick_error;
#
quick_error!
Both pub and non-public types may be declared, and all meta attributes
(such as #[derive(Debug)]) are forwarded as is. The Debug must be
implemented (but you may do that yourself if you like). The documentation
comments /// something (as well as other meta attrbiutes) on variants
are allowed.
You may add arbitrary parameters to any struct variant:
# extern crate quick_error;
#
#
quick_error!
Note unlike in normal Enum decarations you declare names of fields (which are omitted from type). How they can be used is outlined below.
Now you might have noticed trailing braces {}. They are used to define
implementations. By default:
Error::description()returns variant name as static stringError::cause()returns None (even if type wraps some value)Displayoutputsdescription()- No
Fromimplementations are defined
To define description simply add description(value) inside braces:
# extern crate quick_error;
#
#
quick_error!
Normal rules for borrowing apply. So most of the time description either returns constant string or forwards description from enclosed type.
To change cause method to return some error, add cause(value), for
example:
# extern crate quick_error;
#
#
quick_error!
Note you don't need to wrap value in Some, its implicit. In case you want
None returned just omit the cause. You can't return None
conditionally.
To change how each clause is Displayed add display(pattern,..args),
for example:
# extern crate quick_error;
#
#
quick_error!
If you need a reference to the error when Displaying, you can instead use
display(x) -> (pattern, ..args), where x sets the name of the reference.
# extern crate quick_error;
#
#
use Error; // put methods like `description()` of this trait into scope
quick_error!
To convert to the type from any other, use one of the three forms of
from clause.
For example, to convert simple wrapper use bare from():
# extern crate quick_error;
#
#
quick_error!
This implements From<io::Error>.
To convert to singleton enumeration type (discarding the value), use
the from(type) form:
# extern crate quick_error;
#
#
quick_error!
And the most powerful form is from(var: type) -> (arguments...). It
might be used to convert to type with multiple arguments or for arbitrary
value conversions:
# extern crate quick_error;
#
#
quick_error!
All forms of from, display, description, cause clauses can be
combined and put in arbitrary order. Only from may be used multiple times
in single variant of enumeration. Docstrings are also okay.
Empty braces can be omitted as of quick_error 0.1.3.