[go: up one dir, main page]

eyre 0.3.0

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

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

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