mirror of
https://github.com/haraldh/chainerror.git
synced 2025-12-14 15:54:14 +01:00
472 B
472 B
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!().
use crate::chainerror::*;
{{#include ../examples/tutorial4.rs:2:}}
# #[allow(dead_code)]
# mod chainerror {
{{#includecomment ../src/lib.rs}}
# }