pub struct ListUpdatesResponse {
pub next_token: Option<String>,
pub update_ids: Option<Vec<String>>,
}Fields§
§next_token: Option<String>The nextToken value to include in a future ListUpdates request. When the results of a ListUpdates request exceed maxResults, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.
update_ids: Option<Vec<String>>A list of all the updates for the specified cluster and Region.
Trait Implementations§
Source§impl Clone for ListUpdatesResponse
impl Clone for ListUpdatesResponse
Source§fn clone(&self) -> ListUpdatesResponse
fn clone(&self) -> ListUpdatesResponse
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 ListUpdatesResponse
impl Debug for ListUpdatesResponse
Source§impl Default for ListUpdatesResponse
impl Default for ListUpdatesResponse
Source§fn default() -> ListUpdatesResponse
fn default() -> ListUpdatesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListUpdatesResponse
impl<'de> Deserialize<'de> for ListUpdatesResponse
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 ListUpdatesResponse
impl PartialEq for ListUpdatesResponse
impl StructuralPartialEq for ListUpdatesResponse
Auto Trait Implementations§
impl Freeze for ListUpdatesResponse
impl RefUnwindSafe for ListUpdatesResponse
impl Send for ListUpdatesResponse
impl Sync for ListUpdatesResponse
impl Unpin for ListUpdatesResponse
impl UnwindSafe for ListUpdatesResponse
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