pub struct ListUserProfilesResult {
pub next_token: Option<String>,
pub user_profiles: Vec<UserProfileSummary>,
}
Fields§
§next_token: Option<String>
The continuation token to use when requesting the next set of results, if there are more results to be returned.
user_profiles: Vec<UserProfileSummary>
All the user profiles configured in AWS CodeStar for an AWS account.
Trait Implementations§
Source§impl Clone for ListUserProfilesResult
impl Clone for ListUserProfilesResult
Source§fn clone(&self) -> ListUserProfilesResult
fn clone(&self) -> ListUserProfilesResult
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 ListUserProfilesResult
impl Debug for ListUserProfilesResult
Source§impl Default for ListUserProfilesResult
impl Default for ListUserProfilesResult
Source§fn default() -> ListUserProfilesResult
fn default() -> ListUserProfilesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListUserProfilesResult
impl<'de> Deserialize<'de> for ListUserProfilesResult
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 ListUserProfilesResult
impl PartialEq for ListUserProfilesResult
impl StructuralPartialEq for ListUserProfilesResult
Auto Trait Implementations§
impl Freeze for ListUserProfilesResult
impl RefUnwindSafe for ListUserProfilesResult
impl Send for ListUserProfilesResult
impl Sync for ListUserProfilesResult
impl Unpin for ListUserProfilesResult
impl UnwindSafe for ListUserProfilesResult
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