[][src]Struct sentry_actix::SentryMiddlewareBuilder

pub struct SentryMiddlewareBuilder { /* fields omitted */ }

A helper construct that can be used to reconfigure and build the middleware.

Methods

impl SentryMiddlewareBuilder[src]

pub fn finish(self) -> SentryMiddleware[src]

Finishes the building and returns a middleware

pub fn with_hub(self, hub: Arc<Hub>) -> Self[src]

Reconfigures the middleware so that it uses a specific hub instead of the default one.

pub fn with_default_hub(self) -> Self[src]

Reconfigures the middleware so that it uses a specific hub instead of the default one.

pub fn emit_header(self, val: bool) -> Self[src]

If configured the sentry id is attached to a X-Sentry-Event header.

pub fn capture_server_errors(self, val: bool) -> Self[src]

Enables or disables error reporting.

The default is to report all errors.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self