pub struct ListAssociatedStacksResult {
pub names: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields§
§names: Option<Vec<String>>
The name of the stack.
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.
Trait Implementations§
Source§impl Clone for ListAssociatedStacksResult
impl Clone for ListAssociatedStacksResult
Source§fn clone(&self) -> ListAssociatedStacksResult
fn clone(&self) -> ListAssociatedStacksResult
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 ListAssociatedStacksResult
impl Debug for ListAssociatedStacksResult
Source§impl Default for ListAssociatedStacksResult
impl Default for ListAssociatedStacksResult
Source§fn default() -> ListAssociatedStacksResult
fn default() -> ListAssociatedStacksResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAssociatedStacksResult
impl<'de> Deserialize<'de> for ListAssociatedStacksResult
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
impl StructuralPartialEq for ListAssociatedStacksResult
Auto Trait Implementations§
impl Freeze for ListAssociatedStacksResult
impl RefUnwindSafe for ListAssociatedStacksResult
impl Send for ListAssociatedStacksResult
impl Sync for ListAssociatedStacksResult
impl Unpin for ListAssociatedStacksResult
impl UnwindSafe for ListAssociatedStacksResult
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