[][src]Struct rusoto_rekognition::CompareFacesMatch

pub struct CompareFacesMatch {
    pub face: Option<ComparedFace>,
    pub similarity: Option<f32>,
}

Provides information about a face in a target image that matches the source image face analyzed by CompareFaces. The Face property contains the bounding box of the face in the target image. The Similarity property is the confidence that the source image face matches the face in the bounding box.

Fields

face: Option<ComparedFace>

Provides face metadata (bounding box and confidence that the bounding box actually contains a face).

similarity: Option<f32>

Level of confidence that the faces match.

Trait Implementations

impl Clone for CompareFacesMatch[src]

impl Debug for CompareFacesMatch[src]

impl Default for CompareFacesMatch[src]

impl<'de> Deserialize<'de> for CompareFacesMatch[src]

impl PartialEq<CompareFacesMatch> for CompareFacesMatch[src]

impl StructuralPartialEq for CompareFacesMatch[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.