[][src]Struct sentry::internals::ClientInitGuard

#[must_use = "when the init guard is dropped the transport will be shut down and no further events can be sent.  If you do want to ignore this use mem::forget on it."]
pub struct ClientInitGuard(_);

Helper struct that is returned from init.

When this is dropped events are drained with a 1 second timeout.

Methods

impl ClientInitGuard[src]

pub fn is_enabled(&self) -> bool[src]

Quick check if the client is enabled.

Trait Implementations

impl Drop for ClientInitGuard[src]

Auto Trait Implementations

impl Unpin for ClientInitGuard

impl Sync for ClientInitGuard

impl Send for ClientInitGuard

impl UnwindSafe for ClientInitGuard

impl RefUnwindSafe for ClientInitGuard

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T[src]

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

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

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

type Output = T

Should always be Self