Struct sentry::protocol::RuntimeContext [] [src]

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

Holds information about the runtime.

Fields

The name of the runtime (for instance JVM).

The version of the runtime.

Trait Implementations

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

[src]

Performs the conversion.

impl From<RuntimeContext> for Context
[src]

[src]

Performs the conversion.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for RuntimeContext
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for RuntimeContext
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for RuntimeContext
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RuntimeContext
[src]

[src]

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

Auto Trait Implementations