pub struct DeviceSummary {
pub description: Option<String>,
pub device_arn: String,
pub device_fleet_name: Option<String>,
pub device_name: String,
pub iot_thing_name: Option<String>,
pub latest_heartbeat: Option<f64>,
pub models: Option<Vec<EdgeModelSummary>>,
pub registration_time: Option<f64>,
}
Expand description
Summary of the device.
Fields§
§description: Option<String>
A description of the device.
device_arn: String
Amazon Resource Name (ARN) of the device.
device_fleet_name: Option<String>
The name of the fleet the device belongs to.
device_name: String
The unique identifier of the device.
iot_thing_name: Option<String>
The AWS Internet of Things (IoT) object thing name associated with the device..
latest_heartbeat: Option<f64>
The last heartbeat received from the device.
models: Option<Vec<EdgeModelSummary>>
Models on the device.
registration_time: Option<f64>
The timestamp of the last registration or de-reregistration.
Trait Implementations§
Source§impl Clone for DeviceSummary
impl Clone for DeviceSummary
Source§fn clone(&self) -> DeviceSummary
fn clone(&self) -> DeviceSummary
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 DeviceSummary
impl Debug for DeviceSummary
Source§impl Default for DeviceSummary
impl Default for DeviceSummary
Source§fn default() -> DeviceSummary
fn default() -> DeviceSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceSummary
impl<'de> Deserialize<'de> for DeviceSummary
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 DeviceSummary
impl PartialEq for DeviceSummary
impl StructuralPartialEq for DeviceSummary
Auto Trait Implementations§
impl Freeze for DeviceSummary
impl RefUnwindSafe for DeviceSummary
impl Send for DeviceSummary
impl Sync for DeviceSummary
impl Unpin for DeviceSummary
impl UnwindSafe for DeviceSummary
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