Struct rusoto_rekognition::ListFacesResponse [] [src]

pub struct ListFacesResponse {
    pub face_model_version: Option<String>,
    pub faces: Option<Vec<Face>>,
    pub next_token: Option<String>,
}

Fields

Version number of the face detection model associated with the input collection (CollectionId).

An array of Face objects.

If the response is truncated, Amazon Rekognition returns this token that you can use in the subsequent request to retrieve the next set of faces.

Trait Implementations

impl Default for ListFacesResponse
[src]

[src]

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

impl Debug for ListFacesResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListFacesResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations