[][src]Struct rusoto_rekognition::FaceSearchSettings

pub struct FaceSearchSettings {
    pub collection_id: Option<String>,
    pub face_match_threshold: Option<f32>,
}

Input face recognition parameters for an Amazon Rekognition stream processor. FaceRecognitionSettings is a request parameter for CreateStreamProcessor.

Fields

collection_id: Option<String>

The ID of a collection that contains faces that you want to search for.

face_match_threshold: Option<f32>

Minimum face match confidence score that must be met to return a result for a recognized face. Default is 80. 0 is the lowest confidence. 100 is the highest confidence.

Trait Implementations

impl Clone for FaceSearchSettings[src]

impl Debug for FaceSearchSettings[src]

impl Default for FaceSearchSettings[src]

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

impl PartialEq<FaceSearchSettings> for FaceSearchSettings[src]

impl Serialize for FaceSearchSettings[src]

impl StructuralPartialEq for FaceSearchSettings[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.