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

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

Serialize this value into the given Serde serializer. Read more

impl Clone for RuntimeContext

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for RuntimeContext

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

impl Debug for RuntimeContext

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for RuntimeContext

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<RuntimeContext> for RuntimeContext

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

Performs the conversion.

impl From<RuntimeContext> for ContextData

Performs the conversion.

Auto Trait Implementations