Enum sentry_core::protocol::Context
source · [−]#[non_exhaustive]
pub enum Context {
Device(Box<DeviceContext, Global>),
Os(Box<OsContext, Global>),
Runtime(Box<RuntimeContext, Global>),
App(Box<AppContext, Global>),
Browser(Box<BrowserContext, Global>),
Trace(Box<TraceContext, Global>),
Gpu(Box<GpuContext, Global>),
Other(BTreeMap<String, Value>),
}
Expand description
Typed contextual data.
Types like OsContext
can be directly converted with .into()
to Context
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Device(Box<DeviceContext, Global>)
Device data.
Os(Box<OsContext, Global>)
Operating system data.
Runtime(Box<RuntimeContext, Global>)
Runtime data.
App(Box<AppContext, Global>)
Application data.
Browser(Box<BrowserContext, Global>)
Web browser data.
Trace(Box<TraceContext, Global>)
Tracing data.
Gpu(Box<GpuContext, Global>)
GPU data
Other(BTreeMap<String, Value>)
Generic other context data.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Context
impl<'de> Deserialize<'de> for Context
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Context, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Context, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<AppContext> for Context
impl From<AppContext> for Context
sourcefn from(data: AppContext) -> Context
fn from(data: AppContext) -> Context
Converts to this type from the input type.
sourceimpl From<BrowserContext> for Context
impl From<BrowserContext> for Context
sourcefn from(data: BrowserContext) -> Context
fn from(data: BrowserContext) -> Context
Converts to this type from the input type.
sourceimpl From<DeviceContext> for Context
impl From<DeviceContext> for Context
sourcefn from(data: DeviceContext) -> Context
fn from(data: DeviceContext) -> Context
Converts to this type from the input type.
sourceimpl From<GpuContext> for Context
impl From<GpuContext> for Context
sourcefn from(data: GpuContext) -> Context
fn from(data: GpuContext) -> Context
Converts to this type from the input type.
sourceimpl From<RuntimeContext> for Context
impl From<RuntimeContext> for Context
sourcefn from(data: RuntimeContext) -> Context
fn from(data: RuntimeContext) -> Context
Converts to this type from the input type.
sourceimpl From<TraceContext> for Context
impl From<TraceContext> for Context
sourcefn from(data: TraceContext) -> Context
fn from(data: TraceContext) -> Context
Converts to this type from the input type.
sourceimpl Serialize for Context
impl Serialize for Context
sourcefn 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 Context
Auto Trait Implementations
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more