[][src]Struct sentry_types::protocol::v7::OsContext

pub struct OsContext {
    pub name: Option<String>,
    pub version: Option<String>,
    pub build: Option<String>,
    pub kernel_version: Option<String>,
    pub rooted: Option<bool>,
    pub other: Map<String, Value>,
}

Holds operating system information.

Fields

name: Option<String>

The name of the operating system.

version: Option<String>

The version of the operating system.

build: Option<String>

The internal build number of the operating system.

kernel_version: Option<String>

The current kernel version.

rooted: Option<bool>

An indicator if the os is rooted (mobile mostly).

other: Map<String, Value>

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Clone for OsContext[src]

impl Debug for OsContext[src]

impl Default for OsContext[src]

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

impl From<OsContext> for Context[src]

impl PartialEq<OsContext> for OsContext[src]

impl Serialize for OsContext[src]

impl StructuralPartialEq for OsContext[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.