Struct rusoto_rekognition::PersonMatch[][src]

pub struct PersonMatch {
    pub face_matches: Option<Vec<FaceMatch>>,
    pub person: Option<PersonDetail>,
    pub timestamp: Option<i64>,
}

Information about a person whose face matches a face(s) in a Amazon Rekognition collection. Includes information about the faces in the Amazon Rekognition collection (,information about the person (PersonDetail) and the timestamp for when the person was detected in a video. An array of PersonMatch objects is returned by .

Fields

Information about the faces in the input collection that match the face of a person in the video.

Information about the matched person.

The time, in milliseconds from the beginning of the video, that the person was matched in the video.

Trait Implementations

impl Default for PersonMatch
[src]

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

impl Debug for PersonMatch
[src]

Formats the value using the given formatter. Read more

impl Clone for PersonMatch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for PersonMatch

impl Sync for PersonMatch