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
sourceimpl<'de> Deserialize<'de> for OsContext
impl<'de> Deserialize<'de> for OsContext
sourcefn 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
sourceimpl Serialize for OsContext
impl Serialize for OsContext
sourcefn 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
impl StructuralPartialEq for OsContext
Auto Trait Implementations
impl RefUnwindSafe for OsContext
impl Send for OsContext
impl Sync for OsContext
impl Unpin for OsContext
impl UnwindSafe for OsContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more