Struct sentry::protocol::RuntimeContext
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
impl Clone for RuntimeContext
impl Clone for RuntimeContext
fn clone(&self) -> RuntimeContext
fn clone(&self) -> RuntimeContext
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Debug for RuntimeContext
impl Debug for RuntimeContext
impl Default for RuntimeContext
impl Default for RuntimeContext
fn default() -> RuntimeContext
fn default() -> RuntimeContext
Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for RuntimeContext
impl<'de> Deserialize<'de> for RuntimeContext
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
impl From<RuntimeContext> for Context
impl From<RuntimeContext> for Context
fn from(data: RuntimeContext) -> Context
fn from(data: RuntimeContext) -> Context
Converts to this type from the input type.
impl PartialEq<RuntimeContext> for RuntimeContext
impl PartialEq<RuntimeContext> for RuntimeContext
fn eq(&self, other: &RuntimeContext) -> bool
fn eq(&self, other: &RuntimeContext) -> bool
impl Serialize for RuntimeContext
impl Serialize for RuntimeContext
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more