[][src]Struct sentry_actix::SentryMiddlewareBuilder

pub struct SentryMiddlewareBuilder { /* fields omitted */ }

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

Implementations

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

impl RefUnwindSafe for SentryMiddlewareBuilder

impl Send for SentryMiddlewareBuilder

impl Sync for SentryMiddlewareBuilder

impl Unpin for SentryMiddlewareBuilder

impl UnwindSafe for SentryMiddlewareBuilder

Blanket Implementations

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

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

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

impl<T> Erased for T

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,