you run miette? You run her code like the software? Oh. Oh! Error code for coder! Error code for One Thousand Lines!
miette
is a diagnostic library for Rust. It includes a series of protocols
that allow you to hook into its error reporting facilities, and even write
your own error reports! It lets you define error types that can print out like
this (or in any format you like!):
The [Diagnostic] trait in miette
is an extension of std::error::Error
that
adds various facilities like [Severity], error codes that could be looked up
by users, and snippet display with support for multiline reports, arbitrary
[Source]s, and pretty printing.
miette
also includes a (lightweight) anyhow
/eyre
-style
[DiagnosticReport] type which can be returned from application-internal
functions to make the ?
experience nicer. It's extra easy to use when using
[DiagnosticResult]!
While the miette
crate bundles some baseline implementations for [Source]
and [DiagnosticReportPrinter], it's intended to define a protocol that other crates
can build on top of to provide rich error reporting, and encourage an
ecosystem that leans on this extra metadata to provide it for others in a way
that's compatible with [std::error::Error].
Using cargo-edit
:
sh
$ cargo add miette
``rust
/*
You can derive a Diagnostic from any
std::error::Error` type.
thiserror
is a great way to define them, and plays nicely with miette
!
*/
use miette::{Diagnostic, SourceSpan};
use thiserror::Error;
code(oops::my::bad),
help("try doing it better next time?"),
)] struct MyBad { // The Source that we're gonna be printing snippets out of. src: String, // Snippets and highlights can be included in the diagnostic! #[snippet(src, "This is the part that broke")] snip: SourceSpan, #[highlight(snip)] bad_bit: SourceSpan, }
/* Now let's define a function!
Use this DiagnosticResult type (or its expanded version) as the return type
throughout your app (but NOT your libraries! Those should always return concrete
types!).
*/
use miette::DiagnosticResult as Result;
fn thisfails() -> Result<()> {
// You can use plain strings as a Source
, or anything that implements
// the one-method Source
trait.
let src = "source\n text\n here".tostring();
let len = src.len();
Err(MyBad {
src,
snip: ("bad_file.rs", 0, len).into(),
bad_bit: ("this bit here", 9, 4).into(),
})?;
Ok(())
}
/* Now to get everything printed nicely, just return a Result<(), DiagnosticReport> and you're all set!
Note: You can swap out the default reporter for a custom one using miette::set_reporter()
*/
fn pretendthisismain() -> Result<()> {
// kaboom~
thisfails()?;
Ok(())
} ```
And this is the output you'll get if you run this program:
miette
is released to the Rust community under the Apache license 2.0.
It also includes some code taken from eyre
,
and some from thiserror
, also under
the Apache License. Some code is taken from
ariadne
, which is MIT licensed.