[][src]Enum sentry::protocol::Context

pub enum Context {
    Device(Box<DeviceContext>),
    Os(Box<OsContext>),
    Runtime(Box<RuntimeContext>),
    App(Box<AppContext>),
    Browser(Box<BrowserContext>),
    Other(BTreeMap<String, Value>),
}

Typed contextual data.

Types like OsContext can be directly converted with .into() to Context.

Variants

Device(Box<DeviceContext>)

Device data.

Os(Box<OsContext>)

Operating system data.

Runtime(Box<RuntimeContext>)

Runtime data.

App(Box<AppContext>)

Application data.

Browser(Box<BrowserContext>)

Web browser data.

Other(BTreeMap<String, Value>)

Generic other context data.

Methods

impl Context[src]

pub fn type_name(&self) -> &str[src]

Returns the name of the type for sentry.

Trait Implementations

impl<'de> Deserialize<'de> for Context[src]

impl Clone for Context[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<BrowserContext> for Context[src]

impl From<RuntimeContext> for Context[src]

impl From<OsContext> for Context[src]

impl From<AppContext> for Context[src]

impl From<DeviceContext> for Context[src]

impl Serialize for Context[src]

impl PartialEq<Context> for Context[src]

impl Debug for Context[src]

Auto Trait Implementations

impl Send for Context

impl Sync for Context

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self