Enum sentry_types::protocol::v7::ContextData[][src]

pub enum ContextData {
    Default,
    Device(Box<DeviceContext>),
    Os(Box<OsContext>),
    Runtime(Box<RuntimeContext>),
    App(Box<AppContext>),
    Browser(Box<BrowserContext>),
}

Typed contextual data

Variants

Arbitrary contextual information

Device data.

Operating system data.

Runtime data.

Application data.

Web browser data.

Methods

impl ContextData
[src]

Returns the name of the type for sentry.

Trait Implementations

impl Debug for ContextData
[src]

Formats the value using the given formatter. Read more

impl Clone for ContextData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ContextData
[src]

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

This method tests for !=.

impl From<ContextData> for Context
[src]

Performs the conversion.

impl From<AppContext> for ContextData
[src]

Performs the conversion.

impl From<DeviceContext> for ContextData
[src]

Performs the conversion.

impl From<OsContext> for ContextData
[src]

Performs the conversion.

impl From<RuntimeContext> for ContextData
[src]

Performs the conversion.

impl From<BrowserContext> for ContextData
[src]

Performs the conversion.

impl Default for ContextData
[src]

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

Auto Trait Implementations

impl Send for ContextData

impl Sync for ContextData