pub struct DeviceDetail {
pub device_id: String,
pub display_name: String,
pub operating_system: String,
pub browser: String,
pub is_compliant: bool,
pub is_managed: bool,
pub trust_type: String,
}
Fields§
§device_id: String
§display_name: String
§operating_system: String
§browser: String
§is_compliant: bool
§is_managed: bool
§trust_type: String
Trait Implementations§
Source§impl Clone for DeviceDetail
impl Clone for DeviceDetail
Source§fn clone(&self) -> DeviceDetail
fn clone(&self) -> DeviceDetail
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeviceDetail
impl Debug for DeviceDetail
Source§impl<'de> Deserialize<'de> for DeviceDetail
impl<'de> Deserialize<'de> for DeviceDetail
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
Source§impl PartialEq for DeviceDetail
impl PartialEq for DeviceDetail
Source§impl Serialize for DeviceDetail
impl Serialize for DeviceDetail
impl Eq for DeviceDetail
impl StructuralPartialEq for DeviceDetail
Auto Trait Implementations§
impl Freeze for DeviceDetail
impl RefUnwindSafe for DeviceDetail
impl Send for DeviceDetail
impl Sync for DeviceDetail
impl Unpin for DeviceDetail
impl UnwindSafe for DeviceDetail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more