Struct rusoto_alexaforbusiness::SearchProfilesResponse[][src]

pub struct SearchProfilesResponse {
    pub next_token: Option<String>,
    pub profiles: Option<Vec<ProfileData>>,
    pub total_count: Option<i64>,
}

Fields

The token returned to indicate that there is more data available.

The profiles that meet the specified set of filter criteria, in sort order.

The total number of room profiles returned.

Trait Implementations

impl Default for SearchProfilesResponse
[src]

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

impl Debug for SearchProfilesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for SearchProfilesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SearchProfilesResponse
[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