pub struct InstanceUpdateList {
pub items: Option<Vec<InstanceUpdate>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub self_link: Option<String>,
}Expand description
Response returned by ListInstanceUpdates method.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list instance updates rolling updates (response)
Fields§
§items: Option<Vec<InstanceUpdate>>Collection of requested instance updates.
kind: Option<String>[Output Only] Type of the resource.
next_page_token: Option<String>A token used to continue a truncated list request.
self_link: Option<String>[Output Only] The fully qualified URL for the resource.
Trait Implementations§
Source§impl Clone for InstanceUpdateList
impl Clone for InstanceUpdateList
Source§fn clone(&self) -> InstanceUpdateList
fn clone(&self) -> InstanceUpdateList
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 InstanceUpdateList
impl Debug for InstanceUpdateList
Source§impl Default for InstanceUpdateList
impl Default for InstanceUpdateList
Source§fn default() -> InstanceUpdateList
fn default() -> InstanceUpdateList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstanceUpdateList
impl<'de> Deserialize<'de> for InstanceUpdateList
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 Serialize for InstanceUpdateList
impl Serialize for InstanceUpdateList
impl ResponseResult for InstanceUpdateList
Auto Trait Implementations§
impl Freeze for InstanceUpdateList
impl RefUnwindSafe for InstanceUpdateList
impl Send for InstanceUpdateList
impl Sync for InstanceUpdateList
impl Unpin for InstanceUpdateList
impl UnwindSafe for InstanceUpdateList
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