[go: up one dir, main page]

eyre 0.4.0

Flexible concrete Error Reporting type built on std::error::Error with customizable Context and Reports
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use eyre::Report;

#[test]
fn test_send() {
    fn assert_send<T: Send>() {}
    assert_send::<Report>();
}

#[test]
fn test_sync() {
    fn assert_sync<T: Sync>() {}
    assert_sync::<Report>();
}