Struct rusoto_rekognition::CompareFacesRequest [] [src]

pub struct CompareFacesRequest {
    pub similarity_threshold: Option<f32>,
    pub source_image: Image,
    pub target_image: Image,
}

Fields

The minimum level of confidence in the face matches that a match must meet to be included in the FaceMatches array.

The source image, either as bytes or as an S3 object.

The target image, either as bytes or as an S3 object.

Trait Implementations

impl Default for CompareFacesRequest
[src]

[src]

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

impl Debug for CompareFacesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CompareFacesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations