pub struct ListOTAUpdatesResponse {
pub next_token: Option<String>,
pub ota_updates: Option<Vec<OTAUpdateSummary>>,
}Fields§
§next_token: Option<String>A token to use to get the next set of results.
ota_updates: Option<Vec<OTAUpdateSummary>>A list of OTA update jobs.
Trait Implementations§
Source§impl Clone for ListOTAUpdatesResponse
impl Clone for ListOTAUpdatesResponse
Source§fn clone(&self) -> ListOTAUpdatesResponse
fn clone(&self) -> ListOTAUpdatesResponse
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 ListOTAUpdatesResponse
impl Debug for ListOTAUpdatesResponse
Source§impl Default for ListOTAUpdatesResponse
impl Default for ListOTAUpdatesResponse
Source§fn default() -> ListOTAUpdatesResponse
fn default() -> ListOTAUpdatesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListOTAUpdatesResponse
impl<'de> Deserialize<'de> for ListOTAUpdatesResponse
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 ListOTAUpdatesResponse
impl PartialEq for ListOTAUpdatesResponse
impl StructuralPartialEq for ListOTAUpdatesResponse
Auto Trait Implementations§
impl Freeze for ListOTAUpdatesResponse
impl RefUnwindSafe for ListOTAUpdatesResponse
impl Send for ListOTAUpdatesResponse
impl Sync for ListOTAUpdatesResponse
impl Unpin for ListOTAUpdatesResponse
impl UnwindSafe for ListOTAUpdatesResponse
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