Struct sentry_core::protocol::RuntimeContext  
source · pub struct RuntimeContext {
    pub name: Option<String>,
    pub version: Option<String>,
    pub other: BTreeMap<String, Value, Global>,
}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: BTreeMap<String, Value, Global>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<RuntimeContext, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<RuntimeContext, <__D as Deserializer<'de>>::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) -> Context
 
fn from(data: RuntimeContext) -> Context
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 ==.source§impl Serialize for RuntimeContext
 
impl Serialize for RuntimeContext
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RuntimeContext
Auto Trait Implementations§
impl RefUnwindSafe for RuntimeContext
impl Send for RuntimeContext
impl Sync for RuntimeContext
impl Unpin for RuntimeContext
impl UnwindSafe for RuntimeContext
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more