pub struct ListDevicesRequest {
pub device_fleet_name: Option<String>,
pub latest_heartbeat_after: Option<f64>,
pub max_results: Option<i64>,
pub model_name: Option<String>,
pub next_token: Option<String>,
}
Fields§
§device_fleet_name: Option<String>
Filter for fleets containing this name in their device fleet name.
latest_heartbeat_after: Option<f64>
Select fleets where the job was updated after X
max_results: Option<i64>
Maximum number of results to select.
model_name: Option<String>
A filter that searches devices that contains this name in any of their models.
next_token: Option<String>
The response from the last list when returning a list large enough to need tokening.
Trait Implementations§
Source§impl Clone for ListDevicesRequest
impl Clone for ListDevicesRequest
Source§fn clone(&self) -> ListDevicesRequest
fn clone(&self) -> ListDevicesRequest
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 ListDevicesRequest
impl Debug for ListDevicesRequest
Source§impl Default for ListDevicesRequest
impl Default for ListDevicesRequest
Source§fn default() -> ListDevicesRequest
fn default() -> ListDevicesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListDevicesRequest
impl PartialEq for ListDevicesRequest
Source§impl Serialize for ListDevicesRequest
impl Serialize for ListDevicesRequest
impl StructuralPartialEq for ListDevicesRequest
Auto Trait Implementations§
impl Freeze for ListDevicesRequest
impl RefUnwindSafe for ListDevicesRequest
impl Send for ListDevicesRequest
impl Sync for ListDevicesRequest
impl Unpin for ListDevicesRequest
impl UnwindSafe for ListDevicesRequest
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