Struct sentry_types::protocol::v7::SessionAggregateItem [−][src]
pub struct SessionAggregateItem {
pub started: DateTime<Utc>,
pub distinct_id: Option<String>,
pub exited: u32,
pub errored: u32,
pub abnormal: u32,
pub crashed: u32,
}Expand description
An aggregation grouped by started and distinct_id.
Fields
started: DateTime<Utc>The timestamp of when the session itself started.
distinct_id: Option<String>The distinct identifier.
exited: u32The number of exited sessions that ocurred.
errored: u32The number of errored sessions that ocurred, not including the abnormal and crashed ones.
abnormal: u32The number of abnormal sessions that ocurred.
crashed: u32The number of crashed sessions that ocurred.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SessionAggregateItemimpl Send for SessionAggregateItemimpl Sync for SessionAggregateItemimpl Unpin for SessionAggregateItemimpl UnwindSafe for SessionAggregateItemBlanket Implementations
Mutably borrows from an owned value. Read more