Struct sentry_core::protocol::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: BTreeMap<String, Value, Global>,
}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: BTreeMap<String, Value, Global>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<OsContext, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<OsContext, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<OsContext> for OsContext
 
impl PartialEq<OsContext> for OsContext
source§impl Serialize for OsContext
 
impl Serialize for OsContext
source§fn 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