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

pub struct BrowserContext {
    pub name: Option<String>,
    pub version: Option<String>,
    pub other: Map<String, Value>,
}

Holds information about the web browser.

Fields

The name of the browser (for instance "Chrome").

The version of the browser.

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Debug for BrowserContext
[src]

Formats the value using the given formatter. Read more

impl Clone for BrowserContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for BrowserContext
[src]

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

impl PartialEq for BrowserContext
[src]

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

This method tests for !=.

impl From<BrowserContext> for Context
[src]

Performs the conversion.

Auto Trait Implementations