Struct rusoto_rekognition::CelebrityDetail[][src]

pub struct CelebrityDetail {
    pub bounding_box: Option<BoundingBox>,
    pub confidence: Option<f32>,
    pub face: Option<FaceDetail>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub urls: Option<Vec<String>>,
}

Information about a recognized celebrity.

Fields

Bounding box around the body of a celebrity.

The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.

Face details for the recognized celebrity.

The unique identifier for the celebrity.

The name of the celebrity.

An array of URLs pointing to additional celebrity information.

Trait Implementations

impl Default for CelebrityDetail
[src]

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

impl Debug for CelebrityDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for CelebrityDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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