5 unstable releases

0.21.0 Nov 12, 2020
0.20.1 Sep 15, 2020
0.20.0 Sep 9, 2020
0.19.1 Aug 28, 2020
0.19.0 Jun 18, 2020

#26 in #sentry

Download history 73/week @ 2023-11-20 88/week @ 2023-11-27 82/week @ 2023-12-04 108/week @ 2023-12-11 82/week @ 2023-12-18 9/week @ 2023-12-25 51/week @ 2024-01-01 73/week @ 2024-01-08 83/week @ 2024-01-15 94/week @ 2024-01-22 66/week @ 2024-01-29 49/week @ 2024-02-05 44/week @ 2024-02-12 64/week @ 2024-02-19 109/week @ 2024-02-26 120/week @ 2024-03-04

345 downloads per month

Apache-2.0

240KB
4.5K SLoC

Sentry Rust SDK: sentry-failure

Adds support for capturing Sentry errors from failure types.

Failure errors and Fail objects can be logged with the failure integration. This works really well if you use the failure::Error type or if you have failure::Fail objects that use the failure context internally to gain a backtrace.

Example

use sentry_failure::capture_error;
let result = match function_that_might_fail() {
    Ok(result) => result,
    Err(err) => {
        capture_error(&err);
        return Err(err);
    }
};

To capture fails and not errors use capture_fail.

Resources

License: Apache-2.0


lib.rs:

Adds support for capturing Sentry errors from failure types.

Failure errors and Fail objects can be logged with the failure integration. This works really well if you use the failure::Error type or if you have failure::Fail objects that use the failure context internally to gain a backtrace.

Example

use sentry_failure::capture_error;
let result = match function_that_might_fail() {
    Ok(result) => result,
    Err(err) => {
        capture_error(&err);
        return Err(err);
    }
};

To capture fails and not errors use capture_fail.

Dependencies

~8–12MB
~246K SLoC