Struct rusoto_rekognition::SearchFacesByImageResponse[][src]

pub struct SearchFacesByImageResponse {
    pub face_matches: Option<Vec<FaceMatch>>,
    pub face_model_version: Option<String>,
    pub searched_face_bounding_box: Option<BoundingBox>,
    pub searched_face_confidence: Option<f32>,
}

Fields

An array of faces that match the input face, along with the confidence in the match.

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

The bounding box around the face in the input image that Amazon Rekognition used for the search.

The level of confidence that the searchedFaceBoundingBox, contains a face.

Trait Implementations

impl Default for SearchFacesByImageResponse
[src]

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

impl Debug for SearchFacesByImageResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for SearchFacesByImageResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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