[][src]Struct rusoto_rekognition::IndexFacesResponse

pub struct IndexFacesResponse {
    pub face_model_version: Option<String>,
    pub face_records: Option<Vec<FaceRecord>>,
    pub orientation_correction: Option<String>,
    pub unindexed_faces: Option<Vec<UnindexedFace>>,
}

Fields

face_model_version: Option<String>

The version number of the face detection model that's associated with the input collection (CollectionId).

face_records: Option<Vec<FaceRecord>>

An array of faces detected and added to the collection. For more information, see Searching Faces in a Collection in the Amazon Rekognition Developer Guide.

orientation_correction: Option<String>

If your collection is associated with a face detection model that's later than version 3.0, the value of OrientationCorrection is always null and no orientation information is returned.

If your collection is associated with a face detection model that's version 3.0 or earlier, the following applies:

Bounding box information is returned in the FaceRecords array. You can get the version of the face detection model by calling DescribeCollection.

unindexed_faces: Option<Vec<UnindexedFace>>

An array of faces that were detected in the image but weren't indexed. They weren't indexed because the quality filter identified them as low quality, or the MaxFaces request parameter filtered them out. To use the quality filter, you specify the QualityFilter request parameter.

Trait Implementations

impl PartialEq<IndexFacesResponse> for IndexFacesResponse[src]

impl Default for IndexFacesResponse[src]

impl Clone for IndexFacesResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IndexFacesResponse[src]

impl<'de> Deserialize<'de> for IndexFacesResponse[src]

Auto Trait Implementations

impl Send for IndexFacesResponse

impl Sync for IndexFacesResponse

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self