Struct rusoto_codestar::ListUserProfilesResult[][src]

pub struct ListUserProfilesResult {
    pub next_token: Option<String>,
    pub user_profiles: Vec<UserProfileSummary>,
}

Fields

The continuation token to use when requesting the next set of results, if there are more results to be returned.

All the user profiles configured in AWS CodeStar for an AWS account.

Trait Implementations

impl Default for ListUserProfilesResult
[src]

Returns the "default value" for a type. Read more

impl Debug for ListUserProfilesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListUserProfilesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListUserProfilesResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations