Struct sentry_types::protocol::v7::AppContext[][src]

pub struct AppContext {
    pub app_start_time: Option<DateTime<Utc>>,
    pub device_app_hash: Option<String>,
    pub build_type: Option<String>,
    pub app_identifier: Option<String>,
    pub app_name: Option<String>,
    pub app_version: Option<String>,
    pub app_build: Option<String>,
}

Holds app information.

Fields

Optional start time of the app.

Optional device app hash (app specific device ID)

Optional build identicator.

Optional app identifier (dotted bundle id).

Application name as it appears on the platform.

Application version as it appears on the platform.

Internal build ID as it appears on the platform.

Trait Implementations

impl Debug for AppContext
[src]

Formats the value using the given formatter. Read more

impl Clone for AppContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AppContext
[src]

Returns the "default value" for a type. Read more

impl PartialEq for AppContext
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<AppContext> for ContextData
[src]

Performs the conversion.

impl From<AppContext> for Context
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for AppContext

impl Sync for AppContext