[][src]Struct rusoto_rekognition::CustomLabel

pub struct CustomLabel {
    pub confidence: Option<f32>,
    pub geometry: Option<Geometry>,
    pub name: Option<String>,
}

A custom label detected in an image by a call to DetectCustomLabels.

Fields

confidence: Option<f32>

The confidence that the model has in the detection of the custom label. The range is 0-100. A higher value indicates a higher confidence.

geometry: Option<Geometry>

The location of the detected object on the image that corresponds to the custom label. Includes an axis aligned coarse bounding box surrounding the object and a finer grain polygon for more accurate spatial information.

name: Option<String>

The name of the custom label.

Trait Implementations

impl Clone for CustomLabel[src]

impl Debug for CustomLabel[src]

impl Default for CustomLabel[src]

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

impl PartialEq<CustomLabel> for CustomLabel[src]

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