pub struct DescribeStacksResult {
pub next_token: Option<String>,
pub stacks: Option<Vec<Stack>>,
}
Fields§
§next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
stacks: Option<Vec<Stack>>
Information about the stacks.
Trait Implementations§
Source§impl Clone for DescribeStacksResult
impl Clone for DescribeStacksResult
Source§fn clone(&self) -> DescribeStacksResult
fn clone(&self) -> DescribeStacksResult
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 DescribeStacksResult
impl Debug for DescribeStacksResult
Source§impl Default for DescribeStacksResult
impl Default for DescribeStacksResult
Source§fn default() -> DescribeStacksResult
fn default() -> DescribeStacksResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeStacksResult
impl<'de> Deserialize<'de> for DescribeStacksResult
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 DescribeStacksResult
impl PartialEq for DescribeStacksResult
impl StructuralPartialEq for DescribeStacksResult
Auto Trait Implementations§
impl Freeze for DescribeStacksResult
impl RefUnwindSafe for DescribeStacksResult
impl Send for DescribeStacksResult
impl Sync for DescribeStacksResult
impl Unpin for DescribeStacksResult
impl UnwindSafe for DescribeStacksResult
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