Struct sentry::protocol::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 PartialEq<AppContext> for AppContext
[src]

[src]

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

[src]

This method tests for !=.

impl From<AppContext> for ContextData
[src]

[src]

Performs the conversion.

impl From<AppContext> for Context
[src]

[src]

Performs the conversion.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for AppContext
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for AppContext
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for AppContext
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for AppContext
[src]

[src]

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

Auto Trait Implementations

impl Send for AppContext

impl Sync for AppContext