Struct rusoto_rekognition::AgeRange[][src]

pub struct AgeRange {
    pub high: Option<i64>,
    pub low: Option<i64>,
}

Structure containing the estimated age range, in years, for a face.

Rekognition estimates an age-range for faces detected in the input image. Estimated age ranges can overlap; a face of a 5 year old may have an estimated range of 4-6 whilst the face of a 6 year old may have an estimated range of 4-8.

Fields

The highest estimated age.

The lowest estimated age.

Trait Implementations

impl Default for AgeRange
[src]

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

impl Debug for AgeRange
[src]

Formats the value using the given formatter. Read more

impl Clone for AgeRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Sync for AgeRange