Struct rusoto_rekognition::PersonDetection[][src]

pub struct PersonDetection {
    pub person: Option<PersonDetail>,
    pub timestamp: Option<i64>,
}

Details and tracking information for a single time a person is tracked in a video. Amazon Rekognition operations that track persons return an array of PersonDetection objects with elements for each time a person is tracked in a video. For more information, see .

Fields

Details about a person tracked in a video.

The time, in milliseconds from the start of the video, that the person was tracked.

Trait Implementations

impl Default for PersonDetection
[src]

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

impl Debug for PersonDetection
[src]

Formats the value using the given formatter. Read more

impl Clone for PersonDetection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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