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
sourceimpl Clone for RuntimeContext
impl Clone for RuntimeContext
sourcefn 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 more
sourceimpl Debug for RuntimeContext
impl Debug for RuntimeContext
sourceimpl Default for RuntimeContext
impl Default for RuntimeContext
sourcefn default() -> RuntimeContext
fn default() -> RuntimeContext
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RuntimeContext
impl<'de> Deserialize<'de> for RuntimeContext
sourcefn 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
sourceimpl From<RuntimeContext> for Context
impl From<RuntimeContext> for Context
sourcefn from(data: RuntimeContext) -> Self
fn from(data: RuntimeContext) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<RuntimeContext> for RuntimeContext
impl PartialEq<RuntimeContext> for RuntimeContext
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &RuntimeContext) -> bool
fn ne(&self, other: &RuntimeContext) -> bool
This method tests for !=
.
sourceimpl Serialize for RuntimeContext
impl Serialize for RuntimeContext
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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