15 releases
0.2.0 | Apr 26, 2024 |
---|---|
0.1.2 | Apr 18, 2024 |
0.1.1 | Mar 6, 2024 |
0.1.0 | Jan 15, 2024 |
0.0.9 | Nov 29, 2023 |
#946 in Rust patterns
4,534 downloads per month
Used in 6 crates
(4 directly)
26KB
437 lines
thiserror-ext
Useful extension utilities for thiserror
. See the documentation for more details.
#[derive(
Debug,
thiserror::Error,
thiserror_ext::Box,
thiserror_ext::Construct,
thiserror_ext::ContextInto,
thiserror_ext::Macro,
)]
#[thiserror_ext(
newtype(name = Error, backtrace),
macro(path = "crate::foo"),
)]
enum ErrorKind {
#[error("cannot parse int from `{from}`")]
Parse {
source: std::num::ParseIntError,
from: String,
},
#[error("not yet implemented: {msg}")]
NotImplemented {
issue: Option<i32>,
#[message] msg: String,
},
#[error("internal error: {0}")]
Internal(String),
}
// `thiserror_ext::Construct`
let error: Error = Error::internal("oops");
// `thiserror_ext::Box`
assert_eq!(std::mem::size_of::<Error>(), std::mem::size_of::<usize>());
let bt: &Backtrace = std::error::request_ref(&error).unwrap();
// `thiserror_ext::ContextInto`
let result: Result<i32, Error> = "foo".parse().into_parse("foo");
// `thiserror_ext::AsReport`
//
// "cannot parse int from `foo`: invalid digit found in string"
println!("{}", result.unwrap_err().as_report());
// `thiserror_ext::Macro`
bail_not_implemented!(issue = 42, "an {} feature", "awesome");
Dependencies
~290–760KB
~18K SLoC