Struct actix_tools::sentry::sentry_client::protocol::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>,
}

Holds operating system information.

Fields

The name of the operating system.

The version of the operating system.

The internal build number of the operating system.

The current kernel version.

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

Trait Implementations

impl Serialize for OsContext

Serialize this value into the given Serde serializer. Read more

impl Clone for OsContext

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for OsContext

Returns the "default value" for a type. Read more

impl Debug for OsContext

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for OsContext

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<OsContext> for OsContext

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<OsContext> for Context

Performs the conversion.

impl From<OsContext> for ContextData

Performs the conversion.

Auto Trait Implementations

impl Send for OsContext

impl Sync for OsContext