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

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

Holds information about the runtime.

Fields

The name of the runtime (for instance JVM).

The version of the runtime.

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Debug for RuntimeContext
[src]

Formats the value using the given formatter. Read more

impl Clone for RuntimeContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for RuntimeContext
[src]

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

impl PartialEq for RuntimeContext
[src]

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

This method tests for !=.

impl From<RuntimeContext> for Context
[src]

Performs the conversion.

Auto Trait Implementations