Struct sentry::protocol::DeviceContext
source · [−]pub struct DeviceContext {Show 18 fields
pub name: Option<String>,
pub family: Option<String>,
pub model: Option<String>,
pub model_id: Option<String>,
pub arch: Option<String>,
pub battery_level: Option<f32>,
pub orientation: Option<Orientation>,
pub simulator: Option<bool>,
pub memory_size: Option<u64>,
pub free_memory: Option<u64>,
pub usable_memory: Option<u64>,
pub storage_size: Option<u64>,
pub free_storage: Option<u64>,
pub external_storage_size: Option<u64>,
pub external_free_storage: Option<u64>,
pub boot_time: Option<DateTime<Utc>>,
pub timezone: Option<String>,
pub other: BTreeMap<String, Value>,
}
Expand description
Holds device information.
Fields
name: Option<String>
The name of the device.
family: Option<String>
The family of the device model.
model: Option<String>
The device model (human readable).
model_id: Option<String>
The device model (internal identifier).
arch: Option<String>
The native cpu architecture of the device.
battery_level: Option<f32>
The current battery level (0-100).
orientation: Option<Orientation>
The current screen orientation.
simulator: Option<bool>
Simulator/prod indicator.
memory_size: Option<u64>
Total memory available in byts.
free_memory: Option<u64>
How much memory is still available in bytes.
usable_memory: Option<u64>
How much memory is usable for the app in bytes.
storage_size: Option<u64>
Total storage size of the device in bytes.
free_storage: Option<u64>
How much storage is free in bytes.
external_storage_size: Option<u64>
Total size of the attached external storage in bytes (eg: android SDK card).
external_free_storage: Option<u64>
Free size of the attached external storage in bytes (eg: android SDK card).
boot_time: Option<DateTime<Utc>>
Optionally an indicator when the device was booted.
timezone: Option<String>
The timezone of the device.
other: BTreeMap<String, Value>
Additional arbitrary fields for forwards compatibility.
Trait Implementations
sourceimpl Clone for DeviceContext
impl Clone for DeviceContext
sourcepub fn clone(&self) -> DeviceContext
pub fn clone(&self) -> DeviceContext
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeviceContext
impl Debug for DeviceContext
sourceimpl Default for DeviceContext
impl Default for DeviceContext
sourcepub fn default() -> DeviceContext
pub fn default() -> DeviceContext
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DeviceContext
impl<'de> Deserialize<'de> for DeviceContext
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<DeviceContext, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<DeviceContext, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<DeviceContext> for Context
impl From<DeviceContext> for Context
sourcepub fn from(data: DeviceContext) -> Context
pub fn from(data: DeviceContext) -> Context
Performs the conversion.
sourceimpl PartialEq<DeviceContext> for DeviceContext
impl PartialEq<DeviceContext> for DeviceContext
sourcepub fn eq(&self, other: &DeviceContext) -> bool
pub fn eq(&self, other: &DeviceContext) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &DeviceContext) -> bool
pub fn ne(&self, other: &DeviceContext) -> bool
This method tests for !=
.
sourceimpl Serialize for DeviceContext
impl Serialize for DeviceContext
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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 DeviceContext
Auto Trait Implementations
impl RefUnwindSafe for DeviceContext
impl Send for DeviceContext
impl Sync for DeviceContext
impl Unpin for DeviceContext
impl UnwindSafe for DeviceContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more