pub struct DescribeStacksRequest {
pub names: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields§
§names: Option<Vec<String>>
The names of the stacks to describe.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
Trait Implementations§
Source§impl Clone for DescribeStacksRequest
impl Clone for DescribeStacksRequest
Source§fn clone(&self) -> DescribeStacksRequest
fn clone(&self) -> DescribeStacksRequest
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 DescribeStacksRequest
impl Debug for DescribeStacksRequest
Source§impl Default for DescribeStacksRequest
impl Default for DescribeStacksRequest
Source§fn default() -> DescribeStacksRequest
fn default() -> DescribeStacksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStacksRequest
impl PartialEq for DescribeStacksRequest
Source§impl Serialize for DescribeStacksRequest
impl Serialize for DescribeStacksRequest
impl StructuralPartialEq for DescribeStacksRequest
Auto Trait Implementations§
impl Freeze for DescribeStacksRequest
impl RefUnwindSafe for DescribeStacksRequest
impl Send for DescribeStacksRequest
impl Sync for DescribeStacksRequest
impl Unpin for DescribeStacksRequest
impl UnwindSafe for DescribeStacksRequest
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