Struct sentry_types::protocol::v7::OsContext
source · 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>,
}Expand description
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§
source§impl<'de> Deserialize<'de> for OsContext
impl<'de> Deserialize<'de> for OsContext
source§fn 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