[][src]Crate sentry_anyhow

Adds support for capturing Sentry errors from anyhow::Error.

Example

use sentry_anyhow::capture_anyhow;

fn function_that_might_fail() -> anyhow::Result<()> {
    Err(anyhow::anyhow!("some kind of error"))
}

if let Err(err) = function_that_might_fail() {
    capture_anyhow(&err);
}

Traits

AnyhowHubExt

Hub extension methods for working with anyhow.

Functions

capture_anyhow

Captures an anyhow::Error.