Struct rusoto_rekognition::SearchFacesByImageResponse [] [src]

pub struct SearchFacesByImageResponse {
    pub face_matches: Option<Vec<FaceMatch>>,
    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.

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]

[src]

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

impl Debug for SearchFacesByImageResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SearchFacesByImageResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations