error2 0.13.2

A simple error handle library for Rust
Documentation
1
2
3
4
5
6
7
/// Constructs a [`Location`](crate::Location) that is not affected by `#[track_caller]`.
#[macro_export]
macro_rules! location {
    () => {
        $crate::Location::new(::core::file!(), ::core::line!(), ::core::column!())
    };
}