Expand description

Adds support for the error-chain crate.

Feature: with_error_chain (disabled by default)

Errors created by the error-chain crate can be logged with the error_chain integration.

Example

use sentry::integrations::error_chain::capture_error_chain;
let result = match function_that_might_fail() {
    Ok(result) => result,
    Err(err) => {
        capture_error_chain(&err);
        return Err(err);
    }
};

Traits

Hub extension methods for working with error chain

Functions

Captures an error chain.
Creates an event from an error chain.