pub struct GetDevicesResponse {
pub devices: Option<Vec<Device>>,
pub next_token: Option<String>,
}Fields§
§devices: Option<Vec<Device>>The devices.
next_token: Option<String>The token for the next page of results.
Trait Implementations§
Source§impl Clone for GetDevicesResponse
impl Clone for GetDevicesResponse
Source§fn clone(&self) -> GetDevicesResponse
fn clone(&self) -> GetDevicesResponse
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 GetDevicesResponse
impl Debug for GetDevicesResponse
Source§impl Default for GetDevicesResponse
impl Default for GetDevicesResponse
Source§fn default() -> GetDevicesResponse
fn default() -> GetDevicesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetDevicesResponse
impl<'de> Deserialize<'de> for GetDevicesResponse
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 GetDevicesResponse
impl PartialEq for GetDevicesResponse
impl StructuralPartialEq for GetDevicesResponse
Auto Trait Implementations§
impl Freeze for GetDevicesResponse
impl RefUnwindSafe for GetDevicesResponse
impl Send for GetDevicesResponse
impl Sync for GetDevicesResponse
impl Unpin for GetDevicesResponse
impl UnwindSafe for GetDevicesResponse
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