Struct rusoto_rekognition::CelebrityRecognition[][src]

pub struct CelebrityRecognition {
    pub celebrity: Option<CelebrityDetail>,
    pub timestamp: Option<i64>,
}

Information about a detected celebrity and the time the celebrity was detected in a stored video. For more information, see .

Fields

Information about a recognized celebrity.

The time, in milliseconds from the start of the video, that the celebrity was recognized.

Trait Implementations

impl Default for CelebrityRecognition
[src]

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

impl Debug for CelebrityRecognition
[src]

Formats the value using the given formatter. Read more

impl Clone for CelebrityRecognition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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