doc update

generated from commit bbc9c12164
This commit is contained in:
Harald Hoyer 2018-12-21 14:07:02 +01:00
parent 5c93f1a5fe
commit b58c980582
14 changed files with 326 additions and 2 deletions

View file

@ -213,6 +213,22 @@ fn main() -> Result<(), Box<Error>> {
#
# Along with the `ChainError<T>` struct, `chainerror` comes with some useful helper macros to save a lot of typing.
#
# ## Features
#
# `no-fileline`
# : completely turn off storing filename and line
#
# `display-cause`
# : turn on printing a backtrace of the errors in `Display`
#
# `no-debug-cause`
# : turn off printing a backtrace of the errors in `Debug`
#
#
# # Tutorial
#
# Read the [Tutorial](https://haraldh.github.io/chainerror/tutorial1.html)
#
# # Examples
#
# ~~~rust