pub struct DescribeUserStackAssociationsResult {
pub next_token: Option<String>,
pub user_stack_associations: Option<Vec<UserStackAssociation>>,
}
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.
user_stack_associations: Option<Vec<UserStackAssociation>>
The UserStackAssociation objects.
Trait Implementations§
Source§impl Clone for DescribeUserStackAssociationsResult
impl Clone for DescribeUserStackAssociationsResult
Source§fn clone(&self) -> DescribeUserStackAssociationsResult
fn clone(&self) -> DescribeUserStackAssociationsResult
Returns a copy 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 Default for DescribeUserStackAssociationsResult
impl Default for DescribeUserStackAssociationsResult
Source§fn default() -> DescribeUserStackAssociationsResult
fn default() -> DescribeUserStackAssociationsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeUserStackAssociationsResult
impl<'de> Deserialize<'de> for DescribeUserStackAssociationsResult
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 DescribeUserStackAssociationsResult
impl PartialEq for DescribeUserStackAssociationsResult
Source§fn eq(&self, other: &DescribeUserStackAssociationsResult) -> bool
fn eq(&self, other: &DescribeUserStackAssociationsResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeUserStackAssociationsResult
Auto Trait Implementations§
impl Freeze for DescribeUserStackAssociationsResult
impl RefUnwindSafe for DescribeUserStackAssociationsResult
impl Send for DescribeUserStackAssociationsResult
impl Sync for DescribeUserStackAssociationsResult
impl Unpin for DescribeUserStackAssociationsResult
impl UnwindSafe for DescribeUserStackAssociationsResult
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