n0_snafu/
lib.rs

1
2
3
4
5
6
7
8
9
mod error;
mod spantrace;
#[cfg(not(target_arch = "wasm32"))]
pub use tracing_error::ErrorLayer;

pub use self::{
    error::{Error, Result, ResultExt},
    spantrace::SpanTrace,
};