Trait actix_tools::sentry::sentry_client::integrations::failure::FailureHubExt [−][src]
pub trait FailureHubExt {
fn capture_error(&self, err: &Error) -> Uuid;
fn capture_fail<F>(&self, fail: &F) -> Uuid
where
F: Fail + ?Sized;
}Hub extension methods for working with failure.
Required Methods
fn capture_error(&self, err: &Error) -> Uuid
Captures a boxed failure (failure::Error).
fn capture_fail<F>(&self, fail: &F) -> Uuid where
F: Fail + ?Sized,
F: Fail + ?Sized,
Captures a failure::Fail.
Implementors
impl FailureHubExt for Hub