pub struct ListStackSetOperationsOutput {
pub next_token: Option<String>,
pub summaries: Option<Vec<StackSetOperationSummary>>,
}Fields§
§next_token: Option<String>If the request doesn't return all results, NextToken is set to a token. To retrieve the next set of results, call ListOperationResults again and assign that token to the request object's NextToken parameter. If there are no remaining results, NextToken is set to null.
summaries: Option<Vec<StackSetOperationSummary>>A list of StackSetOperationSummary structures that contain summary information about operations for the specified stack set.
Trait Implementations§
Source§impl Clone for ListStackSetOperationsOutput
impl Clone for ListStackSetOperationsOutput
Source§fn clone(&self) -> ListStackSetOperationsOutput
fn clone(&self) -> ListStackSetOperationsOutput
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 ListStackSetOperationsOutput
impl Debug for ListStackSetOperationsOutput
Source§impl Default for ListStackSetOperationsOutput
impl Default for ListStackSetOperationsOutput
Source§fn default() -> ListStackSetOperationsOutput
fn default() -> ListStackSetOperationsOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStackSetOperationsOutput
impl PartialEq for ListStackSetOperationsOutput
Source§fn eq(&self, other: &ListStackSetOperationsOutput) -> bool
fn eq(&self, other: &ListStackSetOperationsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListStackSetOperationsOutput
Auto Trait Implementations§
impl Freeze for ListStackSetOperationsOutput
impl RefUnwindSafe for ListStackSetOperationsOutput
impl Send for ListStackSetOperationsOutput
impl Sync for ListStackSetOperationsOutput
impl Unpin for ListStackSetOperationsOutput
impl UnwindSafe for ListStackSetOperationsOutput
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