Struct sentry::protocol::BrowserContext [] [src]

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

Holds information about the web browser.

Fields

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

The version of the browser.

Trait Implementations

impl PartialEq<BrowserContext> for BrowserContext
[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<BrowserContext> for ContextData
[src]

[src]

Performs the conversion.

impl From<BrowserContext> for Context
[src]

[src]

Performs the conversion.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for BrowserContext
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for BrowserContext
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for BrowserContext
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for BrowserContext
[src]

[src]

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

Auto Trait Implementations