[][src]Enum sentry_core::types::protocol::v7::SessionStatus

pub enum SessionStatus {
    Ok,
    Exited,
    Crashed,
    Abnormal,
}

The Status of a Release Health Session.

Variants

Ok

The session is healthy.

This does not necessarily indicate that the session is still active.

Exited

The session terminated normally.

Crashed

The session resulted in an application crash.

Abnormal

The session had an unexpected abrupt termination (not crashing).

Trait Implementations

impl Clone for SessionStatus[src]

impl Copy for SessionStatus[src]

impl Debug for SessionStatus[src]

impl Default for SessionStatus[src]

impl<'de> Deserialize<'de> for SessionStatus[src]

impl Display for SessionStatus[src]

impl Eq for SessionStatus[src]

impl FromStr for SessionStatus[src]

type Err = ParseSessionStatusError

The associated error which can be returned from parsing.

impl Hash for SessionStatus[src]

impl Ord for SessionStatus[src]

impl PartialEq<SessionStatus> for SessionStatus[src]

impl PartialOrd<SessionStatus> for SessionStatus[src]

impl Serialize for SessionStatus[src]

impl StructuralEq for SessionStatus[src]

impl StructuralPartialEq for SessionStatus[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,