Minimalist helper library for providing contextual errors that display in the traditional
"context: cause" format. Useful for cases where the primary goal of a Result is to convey
detailed diagnostics to a user.
Pairs well with type Result<T> = std::result::Result<T, Box<std::error::Error + Send + Sync>>;
use fs;
use ResultExt;
let result = read.ctx;
assert!;