Struct rusoto_rekognition::ImageQuality[][src]

pub struct ImageQuality {
    pub brightness: Option<f32>,
    pub sharpness: Option<f32>,
}

Identifies face image brightness and sharpness.

Fields

Value representing brightness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a brighter face image.

Value representing sharpness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a sharper face image.

Trait Implementations

impl Default for ImageQuality
[src]

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

impl Debug for ImageQuality
[src]

Formats the value using the given formatter. Read more

impl Clone for ImageQuality
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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