pub struct GetDevicesRequest {
pub device_ids: Option<Vec<String>>,
pub global_network_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub site_id: Option<String>,
}
Fields§
§device_ids: Option<Vec<String>>
One or more device IDs. The maximum is 10.
global_network_id: String
The ID of the global network.
max_results: Option<i64>
The maximum number of results to return.
next_token: Option<String>
The token for the next page of results.
site_id: Option<String>
The ID of the site.
Trait Implementations§
Source§impl Clone for GetDevicesRequest
impl Clone for GetDevicesRequest
Source§fn clone(&self) -> GetDevicesRequest
fn clone(&self) -> GetDevicesRequest
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 GetDevicesRequest
impl Debug for GetDevicesRequest
Source§impl Default for GetDevicesRequest
impl Default for GetDevicesRequest
Source§fn default() -> GetDevicesRequest
fn default() -> GetDevicesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetDevicesRequest
impl PartialEq for GetDevicesRequest
Source§impl Serialize for GetDevicesRequest
impl Serialize for GetDevicesRequest
impl StructuralPartialEq for GetDevicesRequest
Auto Trait Implementations§
impl Freeze for GetDevicesRequest
impl RefUnwindSafe for GetDevicesRequest
impl Send for GetDevicesRequest
impl Sync for GetDevicesRequest
impl Unpin for GetDevicesRequest
impl UnwindSafe for GetDevicesRequest
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