pub struct DeviceAttributes {
pub device_class: String,
pub model: Option<String>,
pub name: String,
pub platform: String,
pub status: String,
pub udid: String,
pub added_date: String,
}
Fields§
§device_class: String
§model: Option<String>
§name: String
§platform: String
§status: String
§udid: String
§added_date: String
Trait Implementations§
Source§impl Debug for DeviceAttributes
impl Debug for DeviceAttributes
Source§impl<'de> Deserialize<'de> for DeviceAttributes
impl<'de> Deserialize<'de> for DeviceAttributes
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
Auto Trait Implementations§
impl Freeze for DeviceAttributes
impl RefUnwindSafe for DeviceAttributes
impl Send for DeviceAttributes
impl Sync for DeviceAttributes
impl Unpin for DeviceAttributes
impl UnwindSafe for DeviceAttributes
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