Struct sentry_types::protocol::v7::RuntimeContext
source · pub struct RuntimeContext {
pub name: Option<String>,
pub version: Option<String>,
pub other: Map<String, Value>,
}Expand description
Holds information about the runtime.
Fields§
§name: Option<String>The name of the runtime (for instance JVM).
version: Option<String>The version of the runtime.
other: Map<String, Value>Additional arbitrary fields for forwards compatibility.
Trait Implementations§
source§impl Clone for RuntimeContext
impl Clone for RuntimeContext
source§fn clone(&self) -> RuntimeContext
fn clone(&self) -> RuntimeContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RuntimeContext
impl Debug for RuntimeContext
source§impl Default for RuntimeContext
impl Default for RuntimeContext
source§fn default() -> RuntimeContext
fn default() -> RuntimeContext
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RuntimeContext
impl<'de> Deserialize<'de> for RuntimeContext
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<RuntimeContext> for Context
impl From<RuntimeContext> for Context
source§fn from(data: RuntimeContext) -> Self
fn from(data: RuntimeContext) -> Self
Converts to this type from the input type.
source§impl PartialEq<RuntimeContext> for RuntimeContext
impl PartialEq<RuntimeContext> for RuntimeContext
source§fn eq(&self, other: &RuntimeContext) -> bool
fn eq(&self, other: &RuntimeContext) -> bool
This method tests for
self and other values to be equal, and is used
by ==.