Crates.io | anyhow_ext |
lib.rs | anyhow_ext |
version | 0.2.1 |
source | src |
created_at | 2022-07-07 12:20:07.862616 |
updated_at | 2022-12-17 02:20:49.068018 |
description | Extension of anynow |
homepage | |
repository | https://github.com/gensmusic/anyhow_ext.git |
max_upload_size | |
id | 621149 |
size | 8,741 |
An extension of anyhow. A drop-in replacement of anyhow.
dot
to make a small backtrace.[dependencies]
anyhow = "1"
anyhow_ext = "0.2"
Then use anyhow_ext::Context
instead of anyhow::Context
.
use anyhow::{anyhow, Result};
use anyhow_ext::Context;
fn foo() -> Result<()> {
Err(anyhow!("an anyhow err")).context("wrap with file info")?;
Ok(())
}
Since anyhow_ext
re-exports all the thing in anyhow
except for Context
, you can use anyhow_ext as a drop-in replacement.
Cargo.toml
[dependencies]
anyhow_ext = "0.2"
Then
use anyhow_ext::{Result,anyhow,Context};
fn foo() -> Result<()> {
Err(anyhow!("an anyhow err")).context("wrap with file info")?;
Ok(())
}
println!("{}", err)
looks like
foo err at `src/bin/anyhow_ext.rs@6:11`
and println!("{:?}", err)
looks like
foo err at `src/bin/anyhow_ext.rs@6:11`
Caused by:
0: read_a_file err at `src/bin/anyhow_ext.rs@10:19`
1: an io err at `src/bin/anyhow_ext.rs@15:55`
2: No such file or directory (os error 2)
dot
to make a small backtraceuse anyhow_ext::{Context, Result};
fn foo() -> Result<()> {
std::fs::read_to_string("file_not_exists.txt").dot()?;
Ok(())
}
fn bar() -> Result<()> {
foo().dot()?;
Ok(())
}
fn main() {
if let Err(err) = try_main().dot() {
println!("{:?}", err);
}
}
fn try_main() -> Result<()> {
bar().dot()?;
Ok(())
}
This will make a small backtrace.
at `examples/dot.rs@14:34`
Caused by:
0: at `examples/dot.rs@20:11`
1: at `examples/dot.rs@9:11`
2: at `examples/dot.rs@4:52`
3: No such file or directory (os error 2)