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

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

Serialize this value into the given Serde serializer. Read more

impl Clone for BrowserContext

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for BrowserContext

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

impl Debug for BrowserContext

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for BrowserContext

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<BrowserContext> for BrowserContext

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 ContextData

Performs the conversion.

impl From<BrowserContext> for Context

Performs the conversion.

Auto Trait Implementations