mirror of
https://github.com/haraldh/chainerror.git
synced 2025-01-31 09:04:14 +01:00
18 lines
471 B
Markdown
18 lines
471 B
Markdown
# Saving coding chars
|
|
|
|
Because decorating an error with more information should not
|
|
let you jump through hoops, `chainerror` has a quick macro for that.
|
|
|
|
`mstrerror!()` fits right into `.map_err()` letting you quickly add
|
|
more debug strings.
|
|
|
|
`mstrerror!()` even understands `format!()` syntax like `println!()`.
|
|
|
|
~~~rust
|
|
use crate::chainerror::*;
|
|
{{#include ../examples/tutorial4.rs:2:}}
|
|
# #[allow(dead_code)]
|
|
# mod chainerror {
|
|
{{#includecomment ../src/lib.rs}}
|
|
# }
|
|
~~~ |