[][src]Struct rusoto_rekognition::PersonMatch

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 an Amazon Rekognition collection. Includes information about the faces in the Amazon Rekognition collection (FaceMatch), information about the person (PersonDetail), and the time stamp for when the person was detected in a video. An array of PersonMatch objects is returned by GetFaceSearch.

Fields

face_matches: Option<Vec<FaceMatch>>

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

person: Option<PersonDetail>

Information about the matched person.

timestamp: Option<i64>

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

Trait Implementations

impl Clone for PersonMatch[src]

impl Debug for PersonMatch[src]

impl Default for PersonMatch[src]

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

impl PartialEq<PersonMatch> for PersonMatch[src]

impl StructuralPartialEq for PersonMatch[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.