Struct rusoto_rekognition::Face[][src]

pub struct Face {
    pub bounding_box: Option<BoundingBox>,
    pub confidence: Option<f32>,
    pub external_image_id: Option<String>,
    pub face_id: Option<String>,
    pub image_id: Option<String>,
}

Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.

Fields

Bounding box of the face.

Confidence level that the bounding box contains a face (and not a different object such as a tree).

Identifier that you assign to all the faces in the input image.

Unique identifier that Amazon Rekognition assigns to the face.

Unique identifier that Amazon Rekognition assigns to the input image.

Trait Implementations

impl Default for Face
[src]

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

impl Debug for Face
[src]

Formats the value using the given formatter. Read more

impl Clone for Face
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Sync for Face