Struct actix_tools::sentry::sentry_client::protocol::AppContext[]

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 Serialize for AppContext

Serialize this value into the given Serde serializer. Read more

impl Clone for AppContext

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AppContext

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

impl Debug for AppContext

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for AppContext

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<AppContext> for AppContext

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 Context

Performs the conversion.

impl From<AppContext> for ContextData

Performs the conversion.

Auto Trait Implementations

impl Send for AppContext

impl Sync for AppContext