Struct rusoto_rekognition::ListCollectionsResponse[][src]

pub struct ListCollectionsResponse {
    pub collection_ids: Option<Vec<String>>,
    pub face_model_versions: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Fields

An array of collection IDs.

Version numbers of the face detection models associated with the collections in the array CollectionIds. For example, the value of FaceModelVersions[2] is the version number for the face detection model used by the collection in CollectionId[2].

If the result is truncated, the response provides a NextToken that you can use in the subsequent request to fetch the next set of collection IDs.

Trait Implementations

impl Default for ListCollectionsResponse
[src]

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

impl Debug for ListCollectionsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCollectionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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