[][src]Struct rusoto_rekognition::DetectCustomLabelsRequest

pub struct DetectCustomLabelsRequest {
    pub image: Image,
    pub max_results: Option<i64>,
    pub min_confidence: Option<f32>,
    pub project_version_arn: String,
}

Fields

image: Imagemax_results: Option<i64>

Maximum number of results you want the service to return in the response. The service returns the specified number of highest confidence labels ranked from highest confidence to lowest.

min_confidence: Option<f32>

Specifies the minimum confidence level for the labels to return. Amazon Rekognition doesn't return any labels with a confidence lower than this specified value. If you specify a value of 0, all labels are return, regardless of the default thresholds that the model version applies.

project_version_arn: String

The ARN of the model version that you want to use.

Trait Implementations

impl Clone for DetectCustomLabelsRequest[src]

impl Debug for DetectCustomLabelsRequest[src]

impl Default for DetectCustomLabelsRequest[src]

impl PartialEq<DetectCustomLabelsRequest> for DetectCustomLabelsRequest[src]

impl Serialize for DetectCustomLabelsRequest[src]

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